How Can [if Ie 6] Can Be Taken By Ie7?
I am adding an aditional stylesheet for IE6 but
Solution 1:
You could just add an option for IE 7 aswell?
<!--[if IE 7]>
Special instructions for IE 7 here
<![endif]-->
Hmm I suppose you could use if and if !
Example usage IF I think this should work..
<!--[if (IE 6)&(!IE 7)]>
Solution 2:
Try <!--[if lt IE 7]>
, also test browser version with some js plugin to be sure that you are working on IE6 not IE7
Post a Comment for "How Can [if Ie 6] Can Be Taken By Ie7?"