Hello,
I'm trying to use conditional stylesheets to create a separate stylesheet for IE, but the stylesheets will not load for me. This is what I have:
<!--[if !IE]>
<link href="style.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="style-ie.css" />
<![endif]-->
I have also tried:
<link href="style.css" rel="stylesheet" type="text/css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="style-ie.css" />
<![endif]-->
With the first one, none of the styles load. My page has no CSS. With the second, only the standard one loads, the IE one does not. What am I doing wrong here?
Thanks in advance.