I was doing some experiments with column ordering in Bootstrap 3 and came across this problem.
How can I achieve the following order:
- XS: 123
- SM: 231
- MD: 312
- LG: 123
This is what I have: LG
doesnt work and displays <blank>13
instead of 123
<div class="row">
<div class="col-xs-4 col-sm-push-8 col-md-push-4 col-lg-pull-0">1</div>
<div class="col-xs-4 col-sm-pull-4 col-md-push-4 col-lg-pull-0">2</div>
<div class="col-xs-4 col-sm-pull-4 col-md-pull-8 col-lg-pull-0">3</div>
</div>