diff options
| author | Mark Otto <[email protected]> | 2013-02-14 23:55:04 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-14 23:55:04 -0800 |
| commit | e44f8cc560839cfd29f5b0e92ec66038705fbc74 (patch) | |
| tree | a60366cb6dfe442dcd6cc93ff8b76379bf7815e0 /docs/css.html | |
| parent | bcb6dd5ee603d5f6681eb3483999e0dc366c5096 (diff) | |
| download | bootstrap-e44f8cc560839cfd29f5b0e92ec66038705fbc74.tar.xz bootstrap-e44f8cc560839cfd29f5b0e92ec66038705fbc74.zip | |
Fixes #6941: add alt attribute to images
Diffstat (limited to 'docs/css.html')
| -rw-r--r-- | docs/css.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/css.html b/docs/css.html index f795602d8..12ca882db 100644 --- a/docs/css.html +++ b/docs/css.html @@ -1906,14 +1906,14 @@ For example, <code>&lt;section&gt;</code> should be wrapped <p>Add classes to an <code><img></code> element to easily style images in any project. Rounded corners are not available in IE8.</p> <div class="bs-docs-example bs-docs-example-images"> - <img data-src="holder.js/140x140" class="img-rounded"> - <img data-src="holder.js/140x140" class="img-circle"> - <img data-src="holder.js/140x140" class="img-thumbnail"> + <img data-src="holder.js/140x140" class="img-rounded" alt=""> + <img data-src="holder.js/140x140" class="img-circle" alt=""> + <img data-src="holder.js/140x140" class="img-thumbnail" alt=""> </div> <pre class="prettyprint linenums"> -<img src="..." class="img-rounded"> -<img src="..." class="img-circle"> -<img src="..." class="img-thumbnail"> +<img src="..." class="img-rounded" alt=""> +<img src="..." class="img-circle" alt=""> +<img src="..." class="img-thumbnail" alt=""> </pre> </section> |
