Alt text test

A cross-browser test to see how the alt attribute behaves.

by ChrisStanyon

HTML

<div id="noDims">
    <p>Image without dimensions set</p>
    <img src="someImage.jpg" alt="This is the alt text" title="This is the title" />
</div>

<div id="dims">
    <p>Image with dimensions set</p>
    <img src="someImage.jpg" alt="This is the alt text" title="This is the title" />
</div>

CSS

div { border: 1px solid green; margin: 10px; padding:5px; }
#dims img { width: 200px; height: 200px; }