diff options
| author | Bas Bosman <[email protected]> | 2013-08-12 17:55:25 +0200 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2013-08-12 17:56:10 +0200 |
| commit | 8dd45053ce70227f9a18531f7a110cc05c41c15e (patch) | |
| tree | 4807523af0fae1d46869ff56bae47d835c796a40 /components.html | |
| parent | 175a112548120500022882d6d2e9bede720f568b (diff) | |
| download | bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.tar.xz bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.zip | |
Add missing aria-hidden attribs to close buttons
Diffstat (limited to 'components.html')
| -rw-r--r-- | components.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html index 4c52d59f3..07c26593c 100644 --- a/components.html +++ b/components.html @@ -1917,13 +1917,13 @@ body { padding-bottom: 70px; } <p>Build on any alert by adding an optional <code>.alert-dismissable</code> and close button.</p> <div class="bs-example"> <div class="alert alert-dismissable"> - <button type="button" class="close" data-dismiss="alert">×</button> + <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> </div> {% highlight html %} <div class="alert alert-dismissable"> - <button type="button" class="close" data-dismiss="alert">×</button> + <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> {% endhighlight %} |
