@font-face ie下不生效问题

@font-face {
    font-family: "fffzzz";
    src:url('./font.ttf');
    src:url('./font_otf.otf');
    src:url('./font_woff.woff');
    src:url('./font_eot.eot');
}
以上写法ie生效了  chrom不生效
@font-face 在ie下字体显示失败,chrom下正常

看了一下,发现ie支持eot格式的 ie能识别的字体要被验证

@font-face{  
    font-family:'fffzzz';  
    src:url('font_eot.eot');  
    src:local('☺'),  
        url('font_eot.eot?#iefix') format('embedded-opentype'),  
        url('font_woff.woff') format('woff'),  
        url('font.ttf') format('truetype'); 
}  

这样验证一下 就生效了

参照   http://blog.csdn.net/shore_w/article/details/8976188

你可能感兴趣的:(css)