Kay Smoljak wrote:
I've seen something similar when the conditional comment syntax wasn't quite right. The way they handle GT and LT is a little odd... I'd check what you have against MSDN.
Hi Kay
MSDN calls for <!--[if expression]> HTML <![endif]-->, which is what I am using. And... since I'm just stating [if IE], this really shouldn't be isolated to IE 5.0.1.
I did a little more testing and things get stranger. IE 5.0.1 breaks when I use:
<style type="text/css">
@import url("css/iqmax.css");
</style><!--[if IE]> <link href="css/iqmax.ie.css" rel="stylesheet" type="text/css" /> <![endif]-->
If I change the method to:
<style type="text/css">
@import url("css/iqmax.css");
</style><!--[if IE]>
<style type="text/css">
@import url("css/iqmax.ie.css");
</style>
<![endif]-->...it works like a champ.
I suppose this will work just dandy, but I'm still baffled as to why the previous method is causing problems. My only guess is that the problem is tied directly to something in my markup. I've used this same method several times recently (01), with no problems at all. Unless there is something screwy with my <link...> syntax that I'm missing, I suppose it will have to remain a mystery.
01: http://www.iqmax.com/iqtray/memCardSync.htm
-- Best regards, Michael Wilson
****************************************************** The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
