Is it possible to remove the IE-specific behavior CSS property via a more specific rule or the !important declaration? Example:

.a-rule
{
  behavior: url(/some.htc);
}
.a-rule.more-specific
{
  behavior: /*no HTC*/
}

I realize that overriding CSS properties is undesirable, but I'm stuck here.

On Edit: I'm not sure where people are getting confused about this question. For all purposes, you can consider this already being an IE specific stylesheet. I'm asking how, if .a_rule above exists and is immutable, how can one remove the behavior via a more specific rule? A standard CSS equivalent would be:

.a_rule
{
  border: 1px solid black;
}
.a_rule.more-specific
{
  border: 0 none;
}

One can essentially "reset" the border property for a subset of elements via a more specific rule. I'm asking how to reset the behavior property in a similar way.

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

On Edit: The default value is "none". See:

What is the *correct* way to unset the behavior property in CSS?

The solution:

.a-rule
{
  behavior: url(/some.htc);
}
.a-rule.more-specific
{
  behavior: none;
}
link|improve this answer
1  
I found an empty string worked as well (at least in IE8), but it looks like the default value is actually none, see here: stackoverflow.com/questions/7953447/… I'm sorry the answers you got were so bad. – Wesley Murch Oct 31 '11 at 21:13
feedback
.a_rule {
  border: 1px solid black; /* we know border is black */
  behavior: url(/some.htc) /* we know something happen inside some.htc */
}
 .a_rule.more-specific {
  border: 0 none; /* we remove the border */
  behavior: url(/some.htc) /* we remove something inside some.htc */
}

use different .htc file

link|improve this answer
feedback

If you have the ability to break stylesheets out by browser (say using PHP or ASP), do it. Using "IE conditional tags" and the !important hack is not the correct (or semantic) way to get IE to do what you want. Also, by breaking out CSS into seperate files for each browser you trim filesize and load times off the browsers that don't require the extra *.htc.

You don't have to create another full CSS file for each browser, just create small CSS files with the specific styles you need to overwrite and include them after the master CSS file.

For example, in PHP:

echo "<link rel='stylesheet' type='text/css' href='style-main.css' />\n";
if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) {
  echo "<link rel='stylesheet' type='text/css' href='style-ie6.css' />\n";
}
link|improve this answer
Thanks, but that's not what I'm asking. Also, for what it's worth, other browsers DO NOT load HTCs, so it's pretty irrelevant when it comes to filesize whether they're in a separate file or not. – jeremy Dec 22 '10 at 21:42
feedback

Maybe use CSS conditional tags for IE.

.a-rule {
   /*Whatever you want*/
}
<!--[if IE]>
.a-rule {
   behavior: url(/some.htc);
}
<![endif]-->
link|improve this answer
2  
There is no such syntax in stylesheets. – bobince Dec 22 '10 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.