rose red wrote: > http://www.melusinedesign.nl/test/test.html has 2 css , one for IE6 > and one for IE7( and of course for FF, opera and some more...) it > looks fine in IE7, but not in IE6, it seems the 2 css are interfering > ?!
In a sense, yes. IE6 sees all styles, so interference is guaranteed. 1: reverse the order of the stylesheets. Correct IE6 AFTER the main stylesheet. <link href="sc-ie7.css" rel="stylesheet" type="text/css" /> <!--[if lte IE 6]><link href="lte-ie6.css" rel="stylesheet" type="text/css" /><![endif]--> This will give IE6 styles that have the same specificity as styles in the main stylesheet, a chance to override styles served to the other browsers. 2: you may have to give styles in the IE6 stylesheet even higher specificity, to make sure override takes effect. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/