aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorBas Bosman <[email protected]>2013-08-12 17:55:25 +0200
committerBas Bosman <[email protected]>2013-08-12 17:56:10 +0200
commit8dd45053ce70227f9a18531f7a110cc05c41c15e (patch)
tree4807523af0fae1d46869ff56bae47d835c796a40 /css.html
parent175a112548120500022882d6d2e9bede720f568b (diff)
downloadbootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.tar.xz
bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.zip
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>