diff options
| author | Mark Otto <[email protected]> | 2016-12-31 11:48:55 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-31 12:47:57 -0800 |
| commit | bccb8ce21300f8da0bfefe1fdde9ab9d87994769 (patch) | |
| tree | f75e7036a02425df11c9a63fc1722e80fbedb069 /docs/layout/overview.md | |
| parent | b9f44d0c8b060d44815eabe8d6d64a9cf901a9ff (diff) | |
| download | bootstrap-bccb8ce21300f8da0bfefe1fdde9ab9d87994769.tar.xz bootstrap-bccb8ce21300f8da0bfefe1fdde9ab9d87994769.zip | |
tweak a few more things
- adjust some verbiage
- change the example to correct some labels and range names
Diffstat (limited to 'docs/layout/overview.md')
| -rw-r--r-- | docs/layout/overview.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/layout/overview.md b/docs/layout/overview.md index f0decede3..0bf0b33a1 100644 --- a/docs/layout/overview.md +++ b/docs/layout/overview.md @@ -118,7 +118,7 @@ Once again, these media queries are also available via Sass mixins: @include media-breakpoint-down(lg) { ... } {% endhighlight %} -We can also use media queries to target a single segment of screen sizes, using the minimum and maximum breakpoint widths: +There are also media queries and mixins for targeting a single segment of screen sizes using the minimum and maximum breakpoint widths. {% highlight scss %} // Extra small devices (portrait phones, less than 576px) @@ -151,14 +151,14 @@ Similarly, media queries may span multiple breakpoint widths: {% highlight scss %} // Example -// Medium devices (tablets, 768px and up) and Large devices (desktops, 992px and up) +// Apply styles starting from medium devices and up to extra large devices @media (min-width: 768px) and (max-width: 1199px) { ... } {% endhighlight %} The Sass mixin for targeting the same screen size range would be: {% highlight scss %} -@include media-breakpoint-between(md, lg) { ... } +@include media-breakpoint-between(md, xl) { ... } {% endhighlight %} ## Z-index |
