我在项目中使用Google Web字体,但遇到了一个奇怪的问题。在Chrome,Mobile Safari,Mobile Chrome甚至Android浏览器中,一切都可以正常运行,但在非Webkit浏览器(IE11,最新FF)中,特殊字符(在我的情况下为“ğ,Ğ”)没有以标准字体显示。
这里是字体导入:
@import url(https://fonts.googleapis.com/css?family=Allura);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab);
作为instructed by Google,您需要请求支持“ Latin Extended”才能正确获得所有土耳其语字母。代替
@import url(https://fonts.googleapis.com/css?family=Allura);
使用
@import url(https://fonts.googleapis.com/css?family=Allura&subset=latin,latin-ext);
类似其他字体。