Re: [css-d]
On 23 Aug 2008, at 17:08, Marc Hilt wrote:
> Hi, I am trying to use a separate css sheet for ie, it works in IE
> but Fire
> fox displays this in the upper left corner:
> <!--[if lte IE 6]>, when I change it to <!--[if lte IE 6]--> it
> then shows
> in the upper corner of IE6, this whole thing is driving me nuts.
> What is the correct syntax? I searched the web and can not come up
> with
> anything addressing the firefox issue.
> Here is the whole line which hides in IE but not FF:
> <!--[if lte IE 6]>
> <link href="css/ie_fix.css" rel="stylesheet" type="text/css"></link>
> <!--<![endif]-->
The closing tag is malformed. Should be:
<!--[if lte IE 6]>
<link href="css/ie_fix.css" rel="stylesheet" type="text/css"></link>
<![endif]-->
Jonny
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
- [css-d] <!--[if lte IE 6]> displays in upper corner i... Marc Hilt
- Re: [css-d] <!--[if lte IE 6]> displays in upper... Jonny Stephens