I have following divs that i am trying to align in a certain order. I would like to have them form two rows, with divs aligned to left always.
I have the code of the same here: Code on Plnkr
Here is a snippet of the code:
<div class="col-md-4 col-sm-6 col-xs-12">
<table class="table">
<tr class="info"><td><b>Row 1</b></td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td></td></tr>
</table>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<table class="table">
<tr class="info"><td><b>Row 1</b></td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td></td></tr>
</table>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<table class="table">
<tr class="info"><td><b>Row 1</b></td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td></td></tr>
</table>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<table class="table">
<tr class="info"><td><b>I have to be left aligned</b></td></tr>
<tr><td>item</td></tr>
<tr><td>item</td></tr>
<tr><td></td></tr>
</table>
</div>
Live preview of the same is here: Live preview
What can I do to left align the fourth div.