Can someone help me with html reorder the columns below using bootstrap 3:
----- ----- ----- | 1 | 2 | 3 | ----- ----- -----
For this:
----- | 2 | ----- | 1 | ----- | 3 | -----
I know this has something to do with push / pull, I just can't figure it out right.
Edit
And the som code I can't work with:
<div class="row"> <div class="col-md-8 col-xs-12">2</div> <div class="col-md-2 col-xs-12 col-md-push-2">1</div> <div class="col-md-8 col-xs-12 col-md-pull-2">3</div> </div>
On a mobile device, it looks good, but not on the desktop.
Decision
<div class="row"> <div class="col-md-8 col-xs-12 col-md-push-2">2</div> <div class="col-md-2 col-xs-12 col-md-pull-8">1</div> <div class="col-md-8 col-xs-12">3</div> </div>
source share