aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-08-12 16:22:26 -0700
committerChris Rebert <[email protected]>2013-08-12 17:28:53 -0700
commit520bc8cf37c0b5424427d22ecc3190b6abf461d7 (patch)
tree168b1731d0a248472d01189d5f162c59ec35dcfe /css.html
parent598f811fa0838ba6153e07862621f13e6c877ca4 (diff)
downloadbootstrap-520bc8cf37c0b5424427d22ecc3190b6abf461d7.tar.xz
bootstrap-520bc8cf37c0b5424427d22ecc3190b6abf461d7.zip
add alt text to <img>s in Images section of CSS docs
Diffstat (limited to 'css.html')
-rw-r--r--css.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/css.html b/css.html
index 3ef0c2816..1e73737f3 100644
--- a/css.html
+++ b/css.html
@@ -2012,14 +2012,14 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<p>Keep in mind that Internet Explorer 8 lacks support for rounded corners.</p>
</div>
<div class="bs-example bs-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="A generic square placeholder image with rounded corners">
+ <img data-src="holder.js/140x140" class="img-circle" alt="A generic square placeholder image where only the portion within the circle circumscribed about said square is visible">
+ <img data-src="holder.js/140x140" class="img-thumbnail" alt="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera">
</div>
{% highlight html %}
-<img src="..." class="img-rounded">
-<img src="..." class="img-circle">
-<img src="..." class="img-thumbnail">
+<img src="..." alt="..." class="img-rounded">
+<img src="..." alt="..." class="img-circle">
+<img src="..." alt="..." class="img-thumbnail">
{% endhighlight %}
<div class="bs-callout bs-callout-warning">