I am trying to figure out a way to do this in Bootstrap (not entirely sure if it's possible or not).
I have 3 columns - a central column which is taking 50% of the container, and 2 ancillary columns either side of it.
When I resize I want the rightmost column to stack under the left column. Diagram below.
I have tried performing an col-sm-offset
on the right-most column (below), but this doesn't quite work correctly.
<div class="container">
<div class="col-sm-3 col-md-3 left">
Left
</div>
<div class="col-sm-6 col-md-9 feed">
Middle
</div>
<div class="col-sm-3 col-md-3 col-sm-offset-1 right">
Right
</div>
</div>
Fiddle here
Hope someone can help