this is the structure of my webpage
HTML
<div class="container" style="padding-top:20px">
<div class="row">
<div class="col-md-8">
<div class="row">
<div class="col-md-12" style="height:80px">
1st
</div>
<div class="col-md-12" style="height:50px">
3rd
</div>
<div class="col-md-12" style="height:50px">
5th
</div>
</div>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-md-12" style="height:50px">
2nd
</div>
<div class="col-md-12" style="height:40px">
4th
</div>
<div class="col-md-12" style="height:90px">
6th
</div>
</div>
</div>
</div>
</div>
I've created a jsFiddle for this layout https://jsfiddle.net/ytke8mn3/
I have labeled these columns as 1st, 2nd, 3rd, 4th, 5th, 6th
The problem I encounter occurs when I resize the page to a width below 992px in Bootstrap.
I would like the columns to appear in the following order > 1st, 2nd, 3rd, 4th, 5th, 6th rather than 1st, 3rd, 5th, 2nd, 4th, 6th
How can I achieve this? Thank you