Skip to content

Instantly share code, notes, and snippets.

@voku
Created June 7, 2014 11:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save voku/6688db077e2664c9d2bd to your computer and use it in GitHub Desktop.
<!--
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