@font-face不工作@IE8及更低版本



我有一个问题,不知道如何解决。@font-face规则在大多数浏览器中都能很好地工作,除了IE8及以下版本。

我有一些测试文件在这里:http://poorscousertommy8.lima-city.de/

如果我在IETester (IE8)中测试站点,那么仍然是常规和粗体(第一部分和第二部分)工作,但斜体和粗体看起来与其他浏览器非常不同。

问候

您没有为iefix列出两次eot文件。试试这样-

@font-face {
font-family: 'Minion';
    src: url('Webfonts/minion-regular.eot');
    src: url('Webfonts/minion-regular.eot?#iefix') format('embedded-opentype'),
         url('Webfonts/minion-regular.woff') format('woff'),
         url('Webfonts/minion-regular.ttf') format('truetype'),
         url('Webfonts/minion-regular.svg#minion-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

最新更新