我使用Signika Bold作为标题的字体。字体是从Google Webfonts加载的。如您在the demo中所见,显示字母“Č”(大小写)存在问题。该字母位于官方Webfonts页面上支持的字体列表中。



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标题(č),但这无济于事。

最佳答案

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

关于html - 不显示支持的字母,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18060682/

10-13 04:12