Skip to content

Commit

Permalink
Clarify order documentation (twbs#29252)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens authored and lucanos committed Oct 27, 2019
1 parent d0bb2fd commit 4d75bbd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions site/content/docs/4.3/layout/grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,13 @@ Use `.order-` classes for controlling the **visual order** of your content. Thes
<div class="container">
<div class="row">
<div class="col">
First, but unordered
First in DOM, no order applied
</div>
<div class="col order-5">
Second, but last
Second in DOM, with a larger order
</div>
<div class="col order-1">
Third, but first
Third in DOM, with an order of 1
</div>
</div>
</div>
Expand All @@ -556,13 +556,13 @@ There are also responsive `.order-first` and `.order-last` classes that change t
<div class="container">
<div class="row">
<div class="col order-last">
First, but last
First in DOM, ordered last
</div>
<div class="col">
Second, but unordered
Second in DOM, unordered
</div>
<div class="col order-first">
Third, but first
Third in DOM, ordered first
</div>
</div>
</div>
Expand Down

0 comments on commit 4d75bbd

Please sign in to comment.