Problem: I would like to not load the CSS if it is IE8
For all other browsers I want to load CSS
I thought about doing
<!--[if IE 8]> (deixar vazio)
and put for each type of browser the CSS Webkit, Gecko, but I think it is not the solution
Is there something like this? ELSE?
<!--[if IE]>
<![else]>
<link rel="stylesheet" type="text/css" href="cstyle.css" />
<![endif]-->