2012-07-30 109 views
3

在那裏我試圖讓自定義字體「公爵填充」,以顯示該網頁仍然無法正常工作是http://www.hamlinforcongress.com/helpout.php自定義字體在IE

我使用:

@font-face { 
font-family: 'header_font'; 
src: url('Duke-Fill.eot?#iefix') format('embedded-opentype'), 
    url('Duke-Fill.woff') format('woff'), 
    url('Duke-Fill.ttf') format('truetype'), 
    url('Duke-Fill.svg#svgFontName') format('svg'); 
} 
.header_font{ 
font-family: header_font; 
} 

我已經嘗試了我可以在Internet上找到的每一個其他建議,但是沒有任何東西可以使Internet Explorer中的自定義字體顯示。它在任何其他可以想象的瀏覽器中都能很好地工作,但不會出現IE(驚喜)。幫幫我?

+0

你可以檢查開發人員工具欄什麼錯誤給你嗎? – easwee 2012-07-30 14:02:21

回答

5
@font-face { 
    font-family: 'NimbusSanConD-Lig'; 
    src: url('fonts/228BFB_1_0.eot'); 
    src: url('fonts/228BFB_1_0.eot?#iefix') format('embedded-opentype'), 
     url('fonts/228BFB_0_0.woff') format('woff'), 
     url('fonts/228BFB_0_0.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
} 

此代碼適用於IE。它生成使用Font Squirrel

+0

代碼可以工作 - 但不一定是他選擇的字體。 – easwee 2012-07-30 13:56:53

+0

不,但他們可以很容易地調整它的一部分,所以似乎不值得改變它。答案的主要部分是使用字體松鼠。 – SpaceBeers 2012-07-30 13:57:41

+0

他需要在他的網頁上使用該字體,否則他可以使用Google網頁字體。 – 2012-07-30 13:57:49