aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-09-30 15:03:45 -0700
committerMark Otto <[email protected]>2017-09-30 20:30:40 -0700
commit5463612c4deaed86ee34c4494f87be64c52fba1d (patch)
treeb6d24945b88b4d71356e5006c63db5467934a1e1 /docs
parent6e9100155da57a1459b5f970e15f3b095351b52f (diff)
downloadbootstrap-5463612c4deaed86ee34c4494f87be64c52fba1d.tar.xz
bootstrap-5463612c4deaed86ee34c4494f87be64c52fba1d.zip
be more specific
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/layout/grid.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/layout/grid.md b/docs/4.0/layout/grid.md
index 4389c36ce..05c01d885 100644
--- a/docs/4.0/layout/grid.md
+++ b/docs/4.0/layout/grid.md
@@ -34,7 +34,7 @@ The above example creates three equal-width columns on small, medium, large, and
Breaking it down, here's how it works:
-- Containers provide a means to center and horizontally pad your site's contents. Use `.container` for specific pixel width or `.container-fluid` for `width: 100%`.
+- Containers provide a means to center and horizontally pad your site's contents. Use `.container` for a responsive pixel width or `.container-fluid` for `width: 100%` across all viewport and device sizes.
- Rows are wrappers for columns. Each column has horizontal `padding` (called a gutter) for controlling the space between them. This `padding` is then counteracted on the rows with negative margins; this way, all your content is aligned properly down the left side.
- Content should be placed within columns, and only columns may be immediate children of rows.
- Thanks to flexbox, grid columns without a set width will automatically layout with equal widths. For example, four instances of `.col-sm` will each automatically be 25% wide for small breakpoints.