aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-14 23:55:04 -0800
committerMark Otto <[email protected]>2013-02-14 23:55:04 -0800
commite44f8cc560839cfd29f5b0e92ec66038705fbc74 (patch)
treea60366cb6dfe442dcd6cc93ff8b76379bf7815e0
parentbcb6dd5ee603d5f6681eb3483999e0dc366c5096 (diff)
downloadbootstrap-e44f8cc560839cfd29f5b0e92ec66038705fbc74.tar.xz
bootstrap-e44f8cc560839cfd29f5b0e92ec66038705fbc74.zip
Fixes #6941: add alt attribute to images
-rw-r--r--docs/css.html12
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, &lt;code&gt;&amp;lt;section&amp;gt;&lt;/code&gt; should be wrapped
<p>Add classes to an <code>&lt;img&gt;</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">
-&lt;img src="..." class="img-rounded"&gt;
-&lt;img src="..." class="img-circle"&gt;
-&lt;img src="..." class="img-thumbnail"&gt;
+&lt;img src="..." class="img-rounded" alt=""&gt;
+&lt;img src="..." class="img-circle" alt=""&gt;
+&lt;img src="..." class="img-thumbnail" alt=""&gt;
</pre>
</section>