I've tried this and it works fine
<p alt="world">hello</p>
With CSS
p::after {
content: attr(alt);
}
But it doesn't work when I try
<img src="http://placehold.it/300x300" alt="my image caption">
With CSS
img::after {
content: attr(alt);
}
Is it possible to output alt text for an img
using CSS?
Please indicate browser compatibility with any solution you provide.