diff options
| author | Mark Otto <[email protected]> | 2013-08-12 09:55:46 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-12 09:55:46 -0700 |
| commit | 1f745176d4e667fd75a492509a4e08ca54af07ae (patch) | |
| tree | 4b26f1507d29115131db7494bd4f2427e0339d6e /css.html | |
| parent | 657c19f94343e2349eef3e8640baaf7b21562fb3 (diff) | |
| parent | 8dd45053ce70227f9a18531f7a110cc05c41c15e (diff) | |
| download | bootstrap-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.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> |
