Bootstrap Push / Pull classes

Demo of the reordering of columns using classes

by mzcarlos

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<div class="row">
    <div class="col-sm-6">This is content that comes <strong>first in the markup</strong>, but looks like it comes second in the view.</div>
    <div class="col-sm-3 col-sm-offset-0">This is the sidebar, that comes <strong>second in the markup</strong>, but looks like it comes first in the view.</div>
</div>