IE8不显示第二个自定义字体

时间:2013-03-20 09:51:45

标签: css fonts internet-explorer-8 font-face

我的网页上有两种自定义字体,一种是完美加载,另一种是遗憾。

我用http://www.fontsquirrel.com/构建了我的字体文件,这通常一直有效。

@font-face {
    font-family: 'cartoonistkooky';
    src: url('#{$fontsDir}cartoonist_kooky-webfont.eot');
    src: url('#{$fontsDir}cartoonist_kooky-webfont.eot?#iefix') format('embedded-opentype'),
         url('#{$fontsDir}cartoonist_kooky-webfont.woff') format('woff'),
         url('#{$fontsDir}cartoonist_kooky-webfont.ttf') format('truetype'),
         url('#{$fontsDir}cartoonist_kooky-webfont.svg#cartoonistkooky') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hastypudding';
    src: url('#{$fontsDir}hasty_pudding-webfont.eot');
    src: url('#{$fontsDir}hasty_pudding-webfont.eot?#iefix') format('embedded-opentype'),
         url('#{$fontsDir}hasty_pudding-webfont.woff') format('woff'),
         url('#{$fontsDir}hasty_pudding-webfont.ttf') format('truetype'),
         url('#{$fontsDir}hasty_pudding-webfont.svg#hasty_puddingregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

Cartooniskooky没有在IE8中显示,也没有错误。

0 个答案:

没有答案