2
Problem: I would like to not load the CSS if it is IE8
For all other browser I want to load the CSS
I thought I’d make
<!--[if IE 8]> (deixar vazio)
and place CSS for each type of browser Webkit, Gecko, but I don’t think it’s the solution
Is there anything like? ELSE?
<!--[if IE]>
<![else]>
<link rel="stylesheet" type="text/css" href="cstyle.css" />
<![endif]-->
That I didn’t know. I’d just like to make an addendum: conditional comments are no longer supported as of IE version 10. If there are problems with this, you can simulate the behavior of IE 9 using
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">
– Carlos
@Carlos Good observation. Thanks! Just to support what you said: Conditional comments are no longer supported
– Miguel Angelo
Portuguese version: Conditional comments no longer supported
– Carlos