aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Pinho <[email protected]>2019-05-29 16:17:40 +0100
committerXhmikosR <[email protected]>2019-05-29 18:17:40 +0300
commit91d07fb26c40fd8182faebede959111f9eb7ecc5 (patch)
tree2d165f40fd01840e978b19755cdf889a24a22c41
parent072622d95943d2c2c57f5cfb44c509829c5e26fb (diff)
downloadbootstrap-91d07fb26c40fd8182faebede959111f9eb7ecc5.tar.xz
bootstrap-91d07fb26c40fd8182faebede959111f9eb7ecc5.zip
Make example description more accurate (#28842)
-rw-r--r--site/content/docs/4.3/utilities/display.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/4.3/utilities/display.md b/site/content/docs/4.3/utilities/display.md
index 99e03fa4c..d07c14fa1 100644
--- a/site/content/docs/4.3/utilities/display.md
+++ b/site/content/docs/4.3/utilities/display.md
@@ -71,7 +71,7 @@ To show an element only on a given interval of screen sizes you can combine one
| Visible only on xl | `.d-none .d-xl-block` |
{{< example >}}
-<div class="d-lg-none">hide on screens wider than lg</div>
+<div class="d-lg-none">hide on lg and wider screens</div>
<div class="d-none d-lg-block">hide on screens smaller than lg</div>
{{< /example >}}