Skip to content

Commit

Permalink
fixes twbs#17003
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Nov 15, 2015
1 parent 8248b9e commit 14d73b9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/_includes/css/grid.html
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,17 @@ <h2 id="grid-offsetting">Offsetting columns</h2>
</div>
{% endhighlight %}

<p>You can also override offsets from lower grid tiers with <code>-offset-0</code> classes.</p>
{% highlight html %}
<div class="row">
<div class="col-xs-6 col-sm-4">
</div>
<div class="col-xs-6 col-sm-4">
</div>
<div class="col-xs-6 col-xs-offset-3 col-sm-4 col-sm-offset-0">
</div>
</div>
{% endhighlight %}

<h2 id="grid-nesting">Nesting columns</h2>
<p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-sm-*</code> columns within an existing <code>.col-sm-*</code> column. Nested rows should include a set of columns that add up to 12 or fewer (it is not required that you use all 12 available columns).</p>
Expand Down

0 comments on commit 14d73b9

Please sign in to comment.