2013-08-05 72 views
0

我使用Signika Bold作爲我的標題的字體。字體是從Google Webfonts加載的。正如您在the demo中所看到的,顯示字母「Č」時出現問題,包括大寫和小寫。該字母位於官方Webfonts頁面上支持的字體列表中。不顯示支持的字母

enter image description here

CSS:

@font-face { 
    font-family: "Signika"; 
    font-style: normal; 
    font-weight: 700; 
    src: local("Signika-Bold"), url(http://themes.googleusercontent.com/static/fonts/signika/v3/7M5kxD4eGxuhgFaIk95pBRsxEYwM7FgeyaSgU71cLG0.woff) format("woff"); 
} 

h1 { 
    font-family: "Signika", Helvetica, sans-serif; 
} 

我也試着鍵入字母爲HTML有權(č),但它並不能幫助。

+2

http://img545.imageshack.us/img545/9917/a0d3 .png請檢查谷歌字體設置。 – Anon

+0

謝謝,這工作! –

回答

1

感謝Anon,解決方案是檢查Google字體設置中的Latin Extended。 The demo已更新。

CSS:

@font-face { 
    font-family: 'Signika'; 
    font-style: normal; 
    font-weight: 700; 
    src: local('Signika-Bold'), url(http://themes.googleusercontent.com/static/fonts/signika/v3/F587cG5P5ff3TX6w4JlorxsxEYwM7FgeyaSgU71cLG0.woff) format('woff'); 
} 

或者:

HTML:

<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Signika:700&subset=latin,latin-ext"> 
1
<link href='http://fonts.googleapis.com/css?family=Signika:700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>