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

时间:2013-05-05 11:27:15

标签: internet-explorer-8 font-face webfonts

我有一个问题,不知道如何解决它。 @ font-face规则在大多数浏览器中都是完美的,除了IE8及更低版本。

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

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

问候

1 个答案:

答案 0 :(得分:0)

你没有为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;
}