I’m having a strange issue.
I am using Internet explorer 9 and just changing the browser mode to IE 7 or IE 8 etc …
My problem is that I’ve added:
<!--[if lt IE 7]>
<link type=\"text/css\" rel=\"stylesheet\" href=\"/styles/ie7.css\" />
<![endif]-->
but it’s not changing to the conditional css file when in IE9 ‘s IE7 browser mode…
Is this normal?
if lt IE 7will match IE6 (or lower).To match IE7, use
lte(less than or equal)