Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 18 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;
}
share|improve this answer
3  
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
.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

share|improve this answer

Maybe use CSS conditional tags for IE.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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