我已经谷歌并在stackoverflow上搜索了几个小时,仍然无法正常工作。我的问题是 ie8 完全忽略了我的字体声明,当我转到网络选项卡时,它甚至不需要来自服务器的字体(我没有看到错误,但我也没有看到调用)。有人有想法吗?我正在使用指南针:
@include font-face(
fontello,
font-files(
"fontello.eot?98351649",
"fontello.eot?98351649?iefix",
"fontello.woff?98351649",
"fontello.ttf?98351649",
"fontello.svg?98351649#fontello"
),
$weight:normal,
$style:normal
);
编译为:
@font-face {
font-family: fontello;
src: url('/static/fonts/fontello.eot?98351649') format('embedded-opentype'), url('/static/fonts/fontello.eot?98351649?iefix') format('embedded-opentype'), url('/static/fonts/fontello.woff?98351649') format('woff'), url('/static/fonts/fontello.ttf?98351649') format('truetype'), url('/static/fonts/fontello.svg?98351649#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
接着:
body {
font-family: fontello, Arial, Helvetica, Verdana !important;
}
任何想法?谢谢