爲什麼這個fontface呈現在IE8:爲什麼其中一個字體在IE8中呈現,但其他字體卻沒有?
@font-face {
font-family: 'Aller';
src: url('aller_rg-webfont.eot');
src: url('aller_rg-webfont.eot?#iefix') format('embedded-opentype'),
url('aller_rg-webfont.woff') format('woff'),
url('aller_rg-webfont.ttf') format('truetype'),
url('aller_rg-webfont.svg#AllerRegular') format('svg');
font-weight: normal;
font-style: normal;
}
這並不:
@font-face {
font-family: 'Champagne';
src: url('champreg-webfont.eot');
src: url('champreg-webfont.eot?#iefix') format('embedded-opentype'),
url('champreg-webfont.woff') format('woff'),
url('champreg-webfont.ttf') format('truetype'),
url('champreg-webfont.svg#Champagne&LimousinesRegular') format('svg');
font-weight: normal;
font-style: normal;
}
我真的無法弄清楚。顯然,所有其他瀏覽器都可以正常工作。
哇...通過FontForge重新命名字體信息實際上工作!今天學到了一些東西,謝謝Patrick – djwd
font2web.com爲我工作。感謝Patrick! – David
這不僅解決了我的IE9問題(它正在工作,但在控制檯中記錄錯誤),但它也讓它在IE8上工作。擁抱感謝! – Chris