Skip to content

Commit

Permalink
CSS docs - Grid section: two dots are missing before 'col-md-8'
Browse files Browse the repository at this point in the history
Add the two missing docs
  • Loading branch information
hustlzp committed Sep 4, 2013
1 parent 5773638 commit 7c7c0e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ <h3 id="grid-example-mixed">Example: Mobile and desktop</h3>
<p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
<div class="bs-docs-grid">
<div class="row show-grid">
<div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
<div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>
<div class="row show-grid">
Expand All @@ -255,7 +255,7 @@ <h3 id="grid-example-mixed">Example: Mobile and desktop</h3>
{% highlight html %}
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
<div class="row">
<div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
<div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
<div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>

Expand Down

0 comments on commit 7c7c0e6

Please sign in to comment.