Seeking advice on using .htc files in CSS.
If I use * to restrict non-IE browsers from applying the style to specific file types (htc, images, etc), will other browsers still load it?
I have a SASS mixin for box sizing but want to avoid loading the htc file unnecessarily.
// Box sizing
@mixin box-sizing($boxmodel) {
-webkit-box-sizing: $boxmodel;
-moz-box-sizing: $boxmodel;
-ms-box-sizing: $boxmodel;
box-sizing: $boxmodel;
@if $boxmodel == border-box {
*behavior: url(/js/boxsizing.htc);
}
}
Appreciate any insights!