If the users browser is IE 4 or lower then I don't want to load the external stylesheet. To do this I have tried using 2 separate conditions, however the negative condition (which is there to ensure all other browsers except IE fall into it) fails to work properly. I have provided my 3 attempts of creating a negative condition, which is meant to refer to any browser which isn't IE.
Any suggestions why any of the above 3 conditions do not work correctly?
Thank you,
Chris
Code:
Attempt 1:
<!--[if !IE]>
<LINK REL="stylesheet" TYPE="text/css" HREF="Styles/Styles.css"/>
<![endif]-->
Attempt 2:
<![if !IE]>
<LINK REL="stylesheet" TYPE="text/css" HREF="Styles/Styles.css"/>
<![endif]>
Attempt 3:
<!--[if !IE]><![IGNORE[--><![IGNORE[]]>
<LINK REL="stylesheet" TYPE="text/css" HREF="Styles/Styles.css"/>
<!--<![endif]-->
Any suggestions why any of the above 3 conditions do not work correctly?
Thank you,
Chris