Forum Moderators: open
I am using this code in the html header
<!--[if IE 6.0]>
<link rel="stylesheet" type="text/css" href="cl_ie6.css" />
<![endif]-->
I have removed all threats of a specificity problem.
Any suggestions?
But still just displays the master css.
The usual setup is that you call the master CSS file first, and that file contains rules for all browsers, including IE. Then you can use a conditional comment to call a second file just for IE, in which there are rules which are parsed in addition to the master CSS file. It in no way replaces the master CSS file, although in terms of specificity, it can be used to override previously-declared rules. Is this your expectation?