不显示支持的字母

时间:2013-08-05 14:26:40

标签: html css google-webfonts

我使用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 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分: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">