Chris Kennon wrote:

Does the following statement work in IE5MAC?

<!--[if IE]>
no.
If so how would I use it to disable a styleSheet that cause this UA to choke?

You will prevent IE/Mac from seeing styles that are wrapped in an @media
rule (inside the stylesheet itself).

Maybe this is what you want?

@media screen { /* start wrapper */
...entire or part of stylesheet...
(IE/Mac doesn't see any of this)
} /* end wrapper */

OTOH:
@media screen {
/*\*//*/
}
/**/
...styles...
(now IE/Mac will see this)
} /* real end of end wrapper */

More info: <http://www.l-c-n.com/IE5tests/hiding/>

        Georg
--
http://www.gunlaug.no
******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to