Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2019-08-16 11:23:51 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-08-16 11:23:51 +0300
commit361ab8063df9bb3a7f7f02c3f104b2a012a2e54b (patch)
tree52fe597c555d899cb5d23560c517b0541f55b73a
parenta92d29a25f7b54b9f32c2a06eb218a0655232cd1 (diff)
Clarify order documentation (#29252)
-rw-r--r--site/content/docs/4.3/layout/grid.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/site/content/docs/4.3/layout/grid.md b/site/content/docs/4.3/layout/grid.md
index 11fff040e9..9ea65e8071 100644
--- a/site/content/docs/4.3/layout/grid.md
+++ b/site/content/docs/4.3/layout/grid.md
@@ -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>
@@ -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>