aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohhee Peace <[email protected]>2021-04-19 12:53:39 +0900
committerGitHub <[email protected]>2021-04-18 20:53:39 -0700
commitaace863463c1915cce47ebad962787e2749b66eb (patch)
tree4ee589347c7ca9269a213c9bdfd296878a10a17a
parent6d312b37c264ac1e4ac244674e6fe700e75f6aa2 (diff)
downloadbootstrap-aace863463c1915cce47ebad962787e2749b66eb.tar.xz
bootstrap-aace863463c1915cce47ebad962787e2749b66eb.zip
Fix Grid System docs (#33676)
* Fix Grid System docs * Apply suggestions from code review Co-authored-by: Mark Otto <[email protected]>
-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 ddc1c594d..d0c7a80f7 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>