aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-07-02 14:37:46 -0700
committerMark Otto <[email protected]>2017-07-02 14:37:46 -0700
commit6cf1a106d4fcd043f47d3eab4ffef3eaf868ce38 (patch)
tree56de4e4b0951e140513fd4566ac34ed0e95c3a6b
parent67245a474f1826bd6ffc774d31209a4da968daf4 (diff)
downloadbootstrap-6cf1a106d4fcd043f47d3eab4ffef3eaf868ce38.tar.xz
bootstrap-6cf1a106d4fcd043f47d3eab4ffef3eaf868ce38.zip
fixes #22968
-rw-r--r--docs/4.0/migration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/migration.md b/docs/4.0/migration.md
index 0f2819edd..101f7f9de 100644
--- a/docs/4.0/migration.md
+++ b/docs/4.0/migration.md
@@ -266,6 +266,6 @@ Our responsive utility classes have largely been removed in favor of explicit `d
- Old names: `.visible-print-block`, `.visible-print-inline`, `.visible-print-inline-block`, `.hidden-print`
- New classes: `.d-print-block`, `.d-print-inline`, `.d-print-inline-block`, `.d-print-none`
-Rather than using explicit `.visible-*` classes, you make an element visible by simply not hiding it at that screen size. You can combine one `.d-*-none` class with one `.d-*-block` class to show an element only on a given interval of screen sizes (e.g. `.d-none.d-md-block.d-lg-none` shows the element only on medium and large devices).
+Rather than using explicit `.visible-*` classes, you make an element visible by simply not hiding it at that screen size. You can combine one `.d-*-none` class with one `.d-*-block` class to show an element only on a given interval of screen sizes (e.g. `.d-none.d-md-block.d-xl-none` shows the element only on medium and large devices).
Note that the changes to the grid breakpoints in v4 means that you'll need to go one breakpoint larger to achieve the same results. The new responsive utility classes don't attempt to accommodate less common cases where an element's visibility can't be expressed as a single contiguous range of viewport sizes; you will instead need to use custom CSS in such cases.