IE没有显示网站字体

时间:2017-01-10 15:54:15

标签: internet-explorer fonts

我的网站上有Trebutchet MS ttf字体。

导入文件如下所示:

@font-face {
  font-family: "Trebuchet-MS";
  src: url('../fonts/Trebuchet-MS-Regular.ttf');
  font-weight: 500;
}

@font-face {
  font-family: "Trebuchet-MS";
  src: url('../fonts/Trebuchet-MS-Bold.ttf');
  font-weight: 700;
}

它在Google Chrome和Mozilla上运行完美,但不适用于IE。

对我的问题有任何想法吗?

1 个答案:

答案 0 :(得分:1)

@font-face {
    font-family: "GothamBook";
    src: url("../fonts/Gotham-Book.eot");
    src: url(".../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Gotham-Book.woff") format("woff"), 
    url("../fonts/Gotham-Book.ttf") format("truetype"), 
    url("../fonts/Gotham-Book.svg#Gotham-Book") format("svg");
}

此代码修复了问题