我能够在 chrome 和 Firefox 中成功使用@font-face,但不能在 IE 中使用:
font-family: 'Market_Deco';
src: url('fonts/Market_Deco.ttf');
这在 IE 中不起作用,所以我尝试在转换和添加 EOT 文件后添加这一行:
src: url('fonts/Market_Deco.eot') format ('eot');
那仍然不起作用,所以我删除了 .ttf 引用并只使用了 EOT 行。这在 IE 中修复它并在其他任何地方破坏它。我开始看这里,每个人都推荐字体松鼠,所以我尝试了:
@font-face {
font-family: 'market_decoregular';
src: url('fonts/market_deco-webfont.eot');
src: url('fonts/market_deco-webfont.eot?#iefix') format('embedded-opentype'),
url('font/market_deco-webfont.woff') format('woff'),
url('fonts/market_deco-webfont.ttf') format('truetype'),
url('fonts/fontmarket_deco-webfont.svg#market_decoregular') format('svg');
font-weight: normal;
font-style: normal;
}
我将四个新字体文件添加到我的字体文件夹中,更新了 CSS,现在它可以在零浏览器中使用。我在这里错过了什么吗?