You can also use a conditional comment for your <link>ed stylesheet. Like this:
- HTML: Select all
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" media="screen" href="ie6.css" />
<![endif]-->
This stylesheet will only be used by IE 6 and below :: lte means -
less
than or
equal to
Hope that helps
