Remove/reset CSS behavior property
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; }
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; }
From the Microsoft HTC Referenceđź•—: For Microsoft Internet Explorer 5 and later, HTML Components (HTCs) provide a mechanism to implement components in script as Dynamic HTML (DHTML) behaviors. An HTC is an HTML file that contains script and a set of HTC-specific elements that define the component. The component is saved with an .htc extension. … Read more