diff options
| author | Chris Rebert <[email protected]> | 2015-12-12 21:45:19 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-12-12 21:45:19 -0800 |
| commit | c2b8118407800953fc954a414bf9f35b5cc8e19a (patch) | |
| tree | 4131a9f37ef3f0329f9b963eee4157ea404cd9d2 /docs | |
| parent | 7c93a0e8583330bf59262195201926a2b650910a (diff) | |
| parent | 4658147ff8d20d1c31562f760e949d222a408e58 (diff) | |
| download | bootstrap-c2b8118407800953fc954a414bf9f35b5cc8e19a.tar.xz bootstrap-c2b8118407800953fc954a414bf9f35b5cc8e19a.zip | |
Merge pull request #18563 from Quy/patch-1
Remove extraneous character
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/layout/responsive-utilities.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/layout/responsive-utilities.md b/docs/layout/responsive-utilities.md index 26171d745..839aeeb24 100644 --- a/docs/layout/responsive-utilities.md +++ b/docs/layout/responsive-utilities.md @@ -11,7 +11,7 @@ Try to use these on a limited basis and avoid creating entirely different versio ## Available classes * The `.hidden-*-up` classes hide the element when the viewport is at the given breakpoint or wider. For example, `.hidden-md-up` hides an element on medium, large, and extra-large viewports. -* The `.hidden-*-down` classes hide the element when the viewport is at the given breakpoint or smaller. For example, `.hidden-md-down` hides an element on extra-small, small, and medium viewports). +* The `.hidden-*-down` classes hide the element when the viewport is at the given breakpoint or smaller. For example, `.hidden-md-down` hides an element on extra-small, small, and medium viewports. * There are no explicit "visible"/"show" responsive utility classes; you make an element visible by simply not hiding it at that breakpoint size. * You can combine one `.hidden-*-up` class with one `.hidden-*-down` class to show an element only on a given interval of screen sizes. For example, `.hidden-sm-down.hidden-xl-up` shows the element only on medium and large viewports. Using multiple `.hidden-*-up` classes or multiple `.hidden-*-down` classes is redundant and pointless. * These 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 breakpoint sizes; you will instead need to use custom CSS in such cases. |
