It is not that all the elements are rendered in one div. Your div's simply don't have any bottom / top margin and with the background color, It's looking like one div tag. You should check in the inspect element in your browser to make sure. A simple fix would be to add some bottom / top margin in your css:
.myDiv {
background-color: #012B39;
text-align: left;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 10px;
width: 25%;
}
Adjust the margin as per your convenience.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…