diff options
| author | Chris Rebert <[email protected]> | 2013-08-12 18:59:58 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-08-12 18:59:59 -0700 |
| commit | b33989a97791560f064e723cfff2ec5b4ac65eba (patch) | |
| tree | 9bdce3e7c0b35f092b4138e444d5efb53bd518e7 /css.html | |
| parent | 3ec793072072773c2d834d99d7e4307629c18058 (diff) | |
| download | bootstrap-b33989a97791560f064e723cfff2ec5b4ac65eba.tar.xz bootstrap-b33989a97791560f064e723cfff2ec5b4ac65eba.zip | |
add src attribute to holder.js-powered <img>s so that they validate
use `data:` URL of empty invalid PNG: src="data:image/png;base64,"
Diffstat (limited to 'css.html')
| -rw-r--r-- | css.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2012,9 +2012,9 @@ For example, <code><section></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" 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"> + <img data-src="holder.js/140x140" src="data:image/png;base64," class="img-rounded" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/140x140" src="data:image/png;base64," 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" src="data:image/png;base64," 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="..." alt="..." class="img-rounded"> |
