On Fri, 30 Jun 2006 10:38:42 +0800, Design Groups  
<[EMAIL PROTECTED]> wrote:

> What I want to do is display the alt text for my images, instead of the
> images themselves, in the printed page.

The CSS way of doing that is to add something like the following to your  
print styles:

img {
   content: attr(alt);
   /* optional, but may help alt text from being chopped off: */
   width: auto !important;
   height: auto !important;
}

However, AFAIK only Opera supports that. For everything else, you'll need  
scripting of some sort.

HTH,
-- 
Andrew Gregory, <URL: mailto:[EMAIL PROTECTED] >
<URL: http://www.scss.com.au/family/andrew/ >
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to