Ie Cross Browser Compatibility Problem
i have a problem in using IE. Everthing is good in using firefox but IE 6 seems to be creating more trouble for css. so i used downlevel-revealed conditional comment, which means every browser (except IE) will include the extra CSS file.
Use <!--[if IE]><![endif]-->
instead.
Solution 2:
Try using this condition statement:
<!--[if lt IE 7]>
<link href="ie6.css" rel="stylesheet">
<![endif]-->
Basically its saying if the browser is less than IE7 then use this style sheet. Works for me.
Solution 3:
Try
<!--[if lte IE 6]><link href="ie6.css" rel="stylesheet"><![endif]-->
Solution 4:
I'm using this;
<!--[if IE 6]>
this place for your stuff.
<![endif]-->
Solution 5:
Change:
<![if !IE]> ! means not IE there
To:
<![if IE]> means if it is IE
to use IE-based CSS.
Post a Comment for "Ie Cross Browser Compatibility Problem"