私はグーグルで、スタックオーバーフローで数時間検索しましたが、まだ機能していません。私の問題は、ie8 が私の font-face 宣言を完全に無視することです。ネットワーク タブに移動すると、サーバーからのフォントさえ必要としません (エラーは表示されませんが、呼び出しも表示されません)。誰にもアイデアがありますか?私はコンパスを使用しています:
@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;
}
何か案が?ありがとう