Commit e44f8cc5 authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #6941: add alt attribute to images

parent bcb6dd5e
17 merge requests!7033Fix backdrop undefined bug in modal,!8635ignore Gruntfile.js in jekyll,!8339Fix broken links to navbar component in docs examples,!7329Fix for issue #7328,!7219Fix for mini typo mistake in css.html,!7674Clear float on all when navbar is collapsed - v3,!7344Fixed .spanX selector (*= instead of ^=),!7346Fix compilation error,!7775added some tests for tooltip title setter,!8157Close Me: Docs "Customize and Download" button fix,!7509Proposed fix for allowing Collapse events ('show'/'hide') to be cancelled,!7964commit fixes #7792,!8656Added rel="stylesheet" to CDN-Examples,!8527Inner properties move 1,!8245Interactive color picker - Closed: request against wrong branch,!7865Patch 2,!7651Drop the sizzle dependency to allow smaller builds targeting mobile devices
Showing with 6 additions and 6 deletions
+6 -6
......@@ -1906,14 +1906,14 @@ For example, <code><section></code> 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>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment