I'd like to use the title attribute content of an img tag to write a legend under the image:
<img title="This is my cat's legend" src="pet-cat-eye.jpg"/>
must be displayed as bellow :
+--------------+
| |
| _ _/| |
| \'o.0' |
| =(___)= |
| U U |
+--------------+
This is my cat's legend
And i'd like to use CSS only. Is it possible to achieve ?
I've tried some experiment around the img[title*=legend]
but did not get to be displayed as I would like to...