Reputation: 53
If you do
<!--[if !IE]>
<link rel ... >
<![endif]-->
other browsers will still think this section is commented out. How do I make other browsers see the stylesheet?
Upvotes: 5
Views: 90
Reputation: 2341
Use this ...
<!--[if !IE]><!-->
<link rel= ...
<!--<![endif]-->
Basically you want to close the comments, without closing the the IE specific conditional section. It remains just normal HTML to other browsers, while becoming an exclusion zone for IE.
Upvotes: 7