对于客户,我必须更改旧应用程序上的字体使用。
它可以在其他浏览器上很好地运行,但是不能在Internet Explorer上运行(当前版本为10)...

我在网上发现了很多关于它的东西,但是我仍然遇到了问题...
对不起,如果我错过了答案:(

这是我导入字体的代码:

@font-face {
    font-family: 'Din';
    src: url('../fonts/din/DINPro.eot');
    src: url('../fonts/din/DINPro.otf') format('truetype'),
    url('../fonts/din/DINPro.woff') format('woff'),
    url('../fonts/din/DINPro.eot?#iefix') format('embedded-opentype'),
    url('../fonts/din/DINPro.svg#QuadrantaBold') format('svg');
    font-weight:400;
    font-style:normal;
}


对不起所有拼写错误

最佳答案

当我们在评论中发言时,您需要将字体转换为所需的所有格式,然后将其包含在代码中(您已经拥有完整的代码,因此只需要转换和上传文件)。

我建议:

http://font2web.com

IE浏览器需要EOT文件。

08-15 16:26