我在我的网页中嵌入了字体,并在 div 中随机使用 font-style = italic 和 font-weight = 700。
我的@font-face 规则是:
@font-face {
font-family: 'Arimo';
src: url('fonts/arimo_bold_italic.eot');
src: url('fonts/arimo_bold_italic.eot?#iefix') format('embedded-opentype'),url('fonts/arimo_bold_italic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
尽管添加的字体样式和字体粗细在所有浏览器上都可以正常工作,但它似乎不适用于 Safari 3.2,从而产生奇怪的结果,例如样式和粗细有时只是随机应用。
有什么解决办法吗?