Attempting to utilize conditional stylesheets for targeting different versions of IE.
Currently have the following setup:
<!--[if IE 7]>
<link href="_includes/css/ie7.css" rel="stylesheet>
<![endif]-->
<!--[if gte IE 7]>
<link href="_includes/css/ie7.css" rel="stylesheet>
<![endif]-->
<!--[if lte IE 7]>
<link href="_includes/css/ie6.css" rel="stylesheet>
<![endif]-->
This setup functions properly, but in IE8 it appears to be picking up ie6.css instead. Unable to determine what's causing this issue. Any insights on this matter?
Thank you
Tried using
<!--[if IE 8]>
without success