Using Bootstrap v3.1.1
When the viewport is less than 992px, the divs are arranged like this:
[ left ]
[ main ]
[ right ]
Is there a way to have them displayed in a different order?
[ main ]
[ left ][ right ]
*main centered with left and right centered below it
<div class="container">
<div class="row clearfix">
<div class="col-md-2 column left" style="background: rgb(108,108,240)"></div>
<div class="col-md-8 column main" style="background: rgb(108,108,240)"></div>
<div class="col-md-2 column right" style="background: rgb(108,108,240)"></div>
</div>
</div>