Is it possible to remove the IE-specific behavior CSS property via a more specific rule or the !important declaration? Example:
!important
.a-rule { beha
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; }