我正在使用模板集,在 IE8 中,webfonts 在粗体、斜体、常规之间随机切换。我已经看到了这个问题:IE8 Renders font weights random,但正如那里提到的,也可以在下面看到,我没有定义超过 4 个权重。为每种重量/样式指定不同的名称并不是一个真正的选择。
我已经确定字体的 Content-Type 是正确的,不幸的是这并没有导致问题。还有其他想法吗?
@font-face {
font-family: 'Name of Font';
src: url('../fonts/font-bold.eot');
font-weight: 700;
font-style: normal
}
@font-face {
font-family: 'Name of Font';
src: url('../fonts/font-italic.eot');
font-weight: normal;
font-style: italic
}
@font-face {
font-family: 'Name of Font';
src: url('../fonts/font-bolditalic.eot');
font-weight: 700;
font-style: italic
}
@font-face {
font-family: 'Name of Font';
src: url('../fonts/font-regular.eot');
font-weight: normal;
font-style: normal
}