Created
June 7, 2014 11:05
-
-
Save voku/6688db077e2664c9d2bd to your computer and use it in GitHub Desktop.
Bootstrap 3 - Column Collapse Order - http://scotch.io/bar-talk/bootstrap-3-tips-and-tricks-you-might-not-know#column-collapse-order
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Desktop: | |
[1 2 3] [1 2 3 4 5 6 7 8 9] | |
Mobile: | |
[1 2 3] | |
[1 2 3 4 5 6 7 8 9] | |
--> | |
<div class="row"> | |
<div class="col-md-9 col-md-push-3">1 2 3 4 5 6 7 8 9 </div> | |
<div class="col-md-3 col-md-pull-9">1 2 3 </div> | |
</div> | |
<!-- | |
Desktop: | |
[ 2nd col ] [ 1st col ] | |
Mobile: | |
[ 2nd col ] | |
[ 1st col ] | |
--> | |
<div class="row"> | |
<div class="col-md-6 col-md-push-6">1st col</div> | |
<div class="col-md-6 col-md-pull-6">2nd col</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment