aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/css/helpers.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-09 13:51:20 -0700
committerMark Otto <[email protected]>2014-07-09 13:51:20 -0700
commit4d5243674a0a236af2ff218da1decaafbdeaa719 (patch)
tree8cc6bf8248cc1abea4793acf48def8433757ed77 /docs/_includes/css/helpers.html
parentf37dbe53a46b6deb8f37bfe1008f30b1275e49c6 (diff)
downloadbootstrap-4d5243674a0a236af2ff218da1decaafbdeaa719.tar.xz
bootstrap-4d5243674a0a236af2ff218da1decaafbdeaa719.zip
remove deprecated warnings from docs
Diffstat (limited to 'docs/_includes/css/helpers.html')
-rw-r--r--docs/_includes/css/helpers.html1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/_includes/css/helpers.html b/docs/_includes/css/helpers.html
index fa7a99fc0..dc992ee23 100644
--- a/docs/_includes/css/helpers.html
+++ b/docs/_includes/css/helpers.html
@@ -132,7 +132,6 @@
<h3 id="helper-classes-show-hide">Showing and hiding content</h3>
<p>Force an element to be shown or hidden (<strong>including for screen readers</strong>) with the use of <code>.show</code> and <code>.hidden</code> classes. These classes use <code>!important</code> to avoid specificity conflicts, just like the <a href="#helper-classes-floats">quick floats</a>. They are only available for block level toggling. They can also be used as mixins.</p>
- <p><code>.hide</code> is available, but it does not always affect screen readers and is <strong>deprecated</strong> as of v3.0.1. Use <code>.hidden</code> or <code>.sr-only</code> instead.</p>
<p>Furthermore, <code>.invisible</code> can be used to toggle only the visibility of an element, meaning its <code>display</code> is not modified and the element can still affect the flow of the document.</p>
{% highlight html %}
<div class="show">...</div>