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 /css.html | |
| parent | 175a112548120500022882d6d2e9bede720f568b (diff) | |
| download | bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.tar.xz bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.zip | |
Add missing aria-hidden attribs to close buttons
Diffstat (limited to 'css.html')
| -rw-r--r-- | css.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2032,10 +2032,10 @@ For example, <code><section></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">×</button></p> + <p><button type="button" class="close" aria-hidden="true">×</button></p> </div> {% highlight html %} -<button type="button" class="close">×</button> +<button type="button" class="close" aria-hidden="true">×</button> {% endhighlight %} <h3>.pull-left</h3> |
