I want to define a CSS rule for IE9 and below ONLY so I included this line on my style sheet:
<!--[if lte IE 9]>
.gradient {
-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#bbb69c, endColorstr=#ffffff)";
}
<![endif]-->
it didnt work. Internet Explorer 9 is not understanding it unless I take off the conditional tags.
Why is that?
Thank you.