2011-10-24 71 views
0

我一直在嘗試在網站上使用@ font-face,我使用的字體松鼠給我的CSS,它在Safari,IE和iPhone上看起來不錯在Firefox中,它不會出現。 我在Mac OSX Snow Leopard上安裝了Firefox 7.0.1。 我搜索了網絡並嘗試了一些「解決方案」,但都沒有工作。 該網站我想要加載這個@ font-face是http://www.utochinredning.se@ font-face不會在Firefox中顯示

有人能指出我的某個方向可能是什麼解決方案嗎?

+0

適用於FF 6.0 MAC的我。 FF 7.0也可以正常工作。 – topek

+0

你可能需要在about:config中檢查你的設置,我知道它們在默認情況下被關閉 – albert

回答

0

發佈您的代碼?

在黑暗中拍攝,但你有沒有包含所有適當的字體文件?這是你的@字體面應該是什麼樣子的樣本(至少是我的樣子)

@font-face { 
    font-family: 'Museo300'; 
    src: url('Museo300-Regular-webfont.eot'); 
    src: url('Museo300-Regular-webfont.eot?#iefix') format('embedded-opentype'), 
     url('Museo300-Regular-webfont.woff') format('woff'), 
     url('Museo300-Regular-webfont.ttf') format('truetype'), 
     url('Museo300-Regular-webfont.svg#Museo300') format('svg'); 
    font-weight: normal; 
    font-style: normal; 
} 

我有以下的字體文件:

Museo300-Regular-webfont.eot 
Museo300-Regular-webfont.svg 
Museo300-Regular-webfont.ttf 
Museo300-Regular-webfont.woff 
在樣式表

然後:

h1 { 
    font-family: "Museo300"; 
    font-weight: normal; 
} 
相關問題