I am trying to display two divs side by side with a width of 50% each. Below these two divs, there is another div with a full width of 100%.
Check out my code below:
<div class="col_1_2"></div>
<div class="full-description">description</div>
<div class="col_1_2"></div>
<div class="full-description">description</div>
.col_1_2 {
float:left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width:50%;
}
.full-description {
width: 100%;
}
The issue I am facing is that the 'full-description' div is not aligning perfectly below the ".col_1_2" div.
This is what I am aiming for:
Thank you for your assistance!