Yes - this is generally the way to use Conditional Comments to filter CSS rules to IE.
Here's a snippet of code to illustrate the point: ... <link rel="stylesheet" href="styles/theme.css" type="text/css" media="screen,projection,tv" /> <!--[if IE]> <link rel="stylesheet" href="styles/theme-ie.css" type="text/css" media="screen,projection,tv" /> <![endif]--> ... So generally, you'd add all the normal rules in the first style sheet, theme.css, then override them specifically for IE in the IE-only style sheet, theme-ie.css. Andy ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
