Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfranko553 <frank@frankshinn.com>2022-10-04 09:24:52 +0300
committerGitHub <noreply@github.com>2022-10-04 09:24:52 +0300
commitebf053b792ab478c36e33c28b280f8cb2becbbee (patch)
tree215a7c8d7d8b89376a15afb3768141bb5cf05d7a
parentb1185b91ea56e4a7b431b869855d898c91e4763b (diff)
Correct typo in documentation for hiding elements (#37250)
-rw-r--r--site/content/docs/5.2/utilities/display.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.2/utilities/display.md b/site/content/docs/5.2/utilities/display.md
index 5ed825acb4..1962f4bd23 100644
--- a/site/content/docs/5.2/utilities/display.md
+++ b/site/content/docs/5.2/utilities/display.md
@@ -64,8 +64,8 @@ To show an element only on a given interval of screen sizes you can combine one
| Hidden only on sm | `.d-sm-none .d-md-block` |
| Hidden only on md | `.d-md-none .d-lg-block` |
| Hidden only on lg | `.d-lg-none .d-xl-block` |
-| Hidden only on xl | `.d-xl-none` |
-| Hidden only on xxl | `.d-xxl-none .d-xxl-block` |
+| Hidden only on xl | `.d-xl-none .d-xxl-block` |
+| Hidden only on xxl | `.d-xxl-none` |
| Visible on all | `.d-block` |
| Visible only on xs | `.d-block .d-sm-none` |
| Visible only on sm | `.d-none .d-sm-block .d-md-none` |