我無法在我測試過的任何移動Webkit瀏覽器中運行@font-face
- iPhone 3GS上的Safari,默認Android 2.2瀏覽器和Android上的Dolphin瀏覽器。@ font-face不適用於移動Webkit
它適用於所有桌面瀏覽器,從IE7到IE9,FF3.5,Safari 4和Opera。
的字體和CSS是從FontSquirrel:
@font-face {
font-family: 'LeagueGothicRegular';
src: url('../fonts/League_Gothic-webfont.eot');
src: local('☺'),
url('../fonts/League_Gothic-webfont.woff') format('woff'),
url('../fonts/League_Gothic-webfont.ttf') format('truetype'),
url('../fonts/League_Gothic-webfont.svg#webfontFHzvtkso') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'LatinModernRoman10Bold';
src: url('../fonts/lmroman10-bold-webfont.eot');
src: local('☺'),
url('../fonts/lmroman10-bold-webfont.woff') format('woff'),
url('../fonts/lmroman10-bold-webfont.ttf') format('truetype'),
url('../fonts/lmroman10-bold-webfont.svg#webfonthCDr6KZk') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'LatinModernRoman10BoldItalic';
src: url('../fonts/lmroman10-bolditalic-webfont.eot');
src: local('☺'),
url('../fonts/lmroman10-bolditalic-webfont.woff') format('woff'),
url('../fonts/lmroman10-bolditalic-webfont.ttf') format('truetype'),
url('../fonts/lmroman10-bolditalic-webfont.svg#webfontegrLi3sm') format('svg');
font-weight: normal;
font-style: normal;
}
我檢查了SVG ID在SVG字體來源,他們都投其所好。
難道是因爲我以後在CSS中有一些字母間隔規則?
謝謝!
你在第二個「eot」上錯過了一個撇號另外,什麼是笑臉......我從來沒有聽說過這個? :)☺ – 2012-01-26 22:45:50