aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-12 09:55:46 -0700
committerMark Otto <[email protected]>2013-08-12 09:55:46 -0700
commit1f745176d4e667fd75a492509a4e08ca54af07ae (patch)
tree4b26f1507d29115131db7494bd4f2427e0339d6e /css.html
parent657c19f94343e2349eef3e8640baaf7b21562fb3 (diff)
parent8dd45053ce70227f9a18531f7a110cc05c41c15e (diff)
downloadbootstrap-1f745176d4e667fd75a492509a4e08ca54af07ae.tar.xz
bootstrap-1f745176d4e667fd75a492509a4e08ca54af07ae.zip
Merge pull request #9384 from BBosman/aria-hidden
Add missing aria-hidden attribs to close buttons
Diffstat (limited to 'css.html')
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index fa738f09e..ee15c30e9 100644
--- a/css.html
+++ b/css.html
@@ -2032,10 +2032,10 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<h3>Close icon</h3>
<p>Use the generic close icon for dismissing content like modals and alerts.</p>
<div class="bs-example">
- <p><button type="button" class="close">&times;</button></p>
+ <p><button type="button" class="close" aria-hidden="true">&times;</button></p>
</div>
{% highlight html %}
-<button type="button" class="close">&times;</button>
+<button type="button" class="close" aria-hidden="true">&times;</button>
{% endhighlight %}
<h3>.pull-left</h3>