
Originally Posted by
John_C
I looked up the alt tag in the sitepoint html ref book and it indicated that the alt tag is fully supported by all the browsers they listed. Then, I search the web and found that the alt tag is not fully supported (or behaves as you indicated) in Safari and Chrome. What a shame.
Yes, it's supported in all browsers in that it reads out text to someone who can't see the image; but the alt text doesn't necessarily display on screen (which I guess is not the primary intention of alt text. I'm not sure what the specs say.)
Regarding the handheld stylesheets: I haven't used them but I intend to.
Ah, I thought you just meant style sheets targeted to mobiles via @media queries. E.g.
Code:
<link type="text/css" href="screen.css" media="screen,projection,tv" >
<link type="text/css" href="smallScreen.css" media="screen and (max-width:751px)" >
Many mobile devices take no notice of media="handheld", so it's kind of a dud technology. For example, iPhones ignore it, and most other smartphones, I believe.
Bookmarks