我有一个问题,不知道如何解决它。@font-face 规则在大多数浏览器中都能完美运行,IE8 及更低版本除外。
我在这里有一些测试文件:http: //poorscousertommy8.lima-city.de/
如果我在 IETester (IE8) 中测试该站点,则 stil 常规和粗体(第一和第二部分)有效,但斜体和粗体看起来与其他浏览器非常不同。
问候
我有一个问题,不知道如何解决它。@font-face 规则在大多数浏览器中都能完美运行,IE8 及更低版本除外。
我在这里有一些测试文件:http: //poorscousertommy8.lima-city.de/
如果我在 IETester (IE8) 中测试该站点,则 stil 常规和粗体(第一和第二部分)有效,但斜体和粗体看起来与其他浏览器非常不同。
问候
您没有为 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;
}