replacing images with alt attribute text

Hi,

I want to replace an image in an XHTML document with the associated alt text.
Since

img {
  content: attr(alt)
}

is no legal CSS2, I thougt something like

img {
  display: none;
}

img:before {
  content: attr(alt);
  display: inline;
}

should to the trick. Is this the right way or isn't this possible at all?

regards,
--
Björn Höhrmann ^ mailto:bjoern@hoehrmann.de ^ http://www.bjoernsworld.de
am Badedeich 7 ° Telefon: +49(0)4667/981ASK ° http://bjoern.hoehrmann.de
25899 Dagebüll # PGP Pub. KeyID: 0xA4357E78 # http://www.websitedev.de/
  "Everything we see or seem is but a dream within a dream" - E.A. Poe

Received on Sunday, 26 November 2000 14:47:19 UTC