<p>For improved cross-browser rendering, we use <ahref="http://necolas.github.com/normalize.css/"target="_blank">Normalize</a>, a project by <ahref="http://twitter.com/necolas"target="_blank">Nicolas Gallagher</a> and <ahref="http://twitter.com/jon_neal"target="_blank">Jonathan Neal</a>.</p>
<p>Easily change the order of our built-in grid columns with <code>.push*</code> and <code>.pull*</code> modifier classes.</p>
<divclass="row show-grid">
<divclass="col-span-9 col-push-3">9</div>
<divclass="col-span-3 col-pull-9">3</div>
</div>
{% highlight html linenos %}
<divclass="row show-grid">
<divclass="col-span-9 col-push-3">9</div>
<divclass="col-span-3 col-pull-9">3</div>
</div>
{% endhighlight %}
<h3id="grid-small">Small device grid</h3>
<p>Use the small device grid classes, like <code>.col-small-span-6</code>, to create columned layouts on phone and tablet devices (anything under 768px). Offsets, pushes, and pulls are not available with the small grid at this time.</p>
<divclass="row show-grid">
<divclass="col-span-4 col-small-span-6">4 cols, 6 small cols</div>
<divclass="col-span-4 col-small-span-6">4 cols, 6 small cols</div>
<divclass="col-span-4 col-small-span-12">4 cols, 12 small cols</div>
</div>
{% highlight html linenos %}
<divclass="row show-grid">
<divclass="col-span-9 col-push-3">9</div>
<divclass="col-span-3 col-pull-9">3</div>
<divclass="row">
<divclass="col-span-4 col-small-span-6">4 cols, 6 small cols</div>
<divclass="col-span-4 col-small-span-6">4 cols, 6 small cols</div>
<divclass="col-span-4 col-small-span-12">4 cols, 12 small cols</div>