Is there a way to style the alt? With javascript? With pseudo attributes? like this:
<img src="foo.jpg" alt="<h1>This is the caption</h1><p>This is some text</p><p>Another text</p>" />
??
And javascript (I use JQuery framework) does something like this?
Get value of <alt> from <img>
make value between <h1></h1> css font-size:22px; color:green;
make value between <p></p> css font-size:14px; color:black;
BTW: The javascript reads the alt-tag of the image and shows them on the screen.. so this alt text will not only shown If the img isnt loaded.

altproperty is there for. For that purpose, better use a different propery. – Pekka 웃 Nov 25 '10 at 9:57