0
因此,我使用@ font-face作爲我的投資組合網站,並且在Chrome,Firefox和Safari中都可以使用 - 但IE已證明存在問題。@字體在IE中的問題
以下是我的CSS文件;
@font-face {
font-family:"League"
src: url('sources/League_Gothic.otf')format('opentype');
}
然後對於IE,我在主HTML頁面上有以下內容。
<!--[if IE]>
<style type="text/css" media="screen">
@font-face{
font-family:'League';
src: url('sources/league_gothic-webfont.eot');
}
</style>
<![endif]-->
我在Font Squirrel上的.oft文件中創建了.eot文件,但IE繼續使用默認的Times New Roman。
有什麼建議嗎?
PS。我的網站是在iamturner.co.uk
嘗試使用字體彈簧語法。 http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax – 2011-06-14 12:08:07