My layout is structured as follows:
<div class="container">
<div class="row">
<div class="col-md-8>
<div class="row">
<div class="col-md-12">
box 1
</div>
</div>
<div class="row">
<div class="col-md-12">
box 2
</div>
</div>
</div>
<div class="col-md-4">
box 3
</div>
</div>
</div>
Can Bootstrap help me rearrange the order for small screens to display like this?
|box1|
|box3|
|box2|
I'm stuck trying to swap rows in this sequence. Any assistance would be greatly appreciated.