]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix Grid System docs (#33676)
authorKohhee Peace <kohheepeace@gmail.com>
Mon, 19 Apr 2021 03:53:39 +0000 (12:53 +0900)
committerGitHub <noreply@github.com>
Mon, 19 Apr 2021 03:53:39 +0000 (20:53 -0700)
* Fix Grid System docs

* Apply suggestions from code review

Co-authored-by: Mark Otto <otto@github.com>
site/content/docs/5.0/layout/grid.md

index ddc1c594df01686eb162938fbf69f0554ef0702e..d0c7a80f7e2122b388618f4a34e956077869811f 100644 (file)
@@ -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>