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:
authorKohhee Peace <kohheepeace@gmail.com>2021-04-19 06:53:39 +0300
committerGitHub <noreply@github.com>2021-04-19 06:53:39 +0300
commitaace863463c1915cce47ebad962787e2749b66eb (patch)
tree4ee589347c7ca9269a213c9bdfd296878a10a17a
parent6d312b37c264ac1e4ac244674e6fe700e75f6aa2 (diff)
Fix Grid System docs (#33676)
* Fix Grid System docs * Apply suggestions from code review Co-authored-by: Mark Otto <otto@github.com>
-rw-r--r--site/content/docs/5.0/layout/grid.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/site/content/docs/5.0/layout/grid.md b/site/content/docs/5.0/layout/grid.md
index ddc1c594df..d0c7a80f7e 100644
--- a/site/content/docs/5.0/layout/grid.md
+++ b/site/content/docs/5.0/layout/grid.md
@@ -17,14 +17,14 @@ Bootstrap's grid system uses a series of containers, rows, and columns to layout
{{< example class="bd-example-row" >}}
<div class="container">
<div class="row">
- <div class="col-sm">
- One of three columns
+ <div class="col">
+ Column
</div>
- <div class="col-sm">
- One of three columns
+ <div class="col">
+ Column
</div>
- <div class="col-sm">
- One of three columns
+ <div class="col">
+ Column
</div>
</div>
</div>