I have been designing in IE 6 and firefox for long time. I was stuckup in many places with IE6 positioning system. I dont want to hack much of css to make it work in both browsers.
Thanks to MSFT IE7 which is almost comes in handy in look and feel as well as rendering the standards. Now my life made simpler with IE7 and FF which works well with my exciting css.
I have added sample conditional comments to separate between IE version:
<!--[if gte IE 6]>
<link href="styleIE7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if lt IE 7]>
<link href="styleIE6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if !IE]><!-->
<link href="styleFireFox.css" rel="stylesheet" type="text/css" />
<!--<![endif]-->
Comments