I have three div elements each with 33% width.
<div class="row">
<div class="col-md-4">a</div>
<div class="col-md-4">a</div>
<div class="col-md-4">a</div>
</div>
Is it possible to style the third div so that it does not align with the other two? I would like the first two divs to be in a row and the third div at the bottom using CSS properties. How can this be achieved?