如何让 Google Font API 中的连字在 Google Chrome 中显示?
我正在使用 Google Font API 来显示我的网站徽标。 (请参见 stolencamerafinder.com 的顶部)
在 Chrome 中,字母“f”和“i”是分开出现的,但在FireFox,它们是一个很好的连接连字
如何强制 Chrome 使用连字?
如果我在 html 中使用连字 ascii 字符 (fi),那么它不会使用该字体,它会退回到 arial,但字体 (OFL Sorts Mill Goudy TT) 必须支持该连字,因为 Firefox 会显示它。
更新:我最终放弃了 Google 字体 API,转而使用普通的 @font-face。无论如何,fontsquirrel.com 上有更多选择。
I'm using Google Font API to display my website logo. (See top of stolencamerafinder.com)
In Chrome the letters 'f' and 'i' appear seperately, but in FireFox, they are a nice joined ligature
How do I force Chrome to use the ligature?
If I use the ligature ascii character (fi) in the html then it doesn't use the font, it falls back to arial, yet the font (OFL Sorts Mill Goudy TT) must support that ligature since firefox displays it.
Update: I ended up ditching Google font API in favour of plain @font-face. More choice on fontsquirrel.com anyway.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短回答:此功能尚未实现。
长答案:看看 http://crbug.com/22240 ( http://crbug.com/64479 可能也很有趣)。
Short answer: This feature isn't implemented yet.
Long answer: Take a look at http://crbug.com/22240 ( http://crbug.com/64479 might also be interesting).
是否有可能在webkit浏览器中 该房产尚未开发?
或者是webkit浏览器使用的字体类型的问题? (
TrueType
、Woff
而不是Opentype
)?编辑:在 Safari 中这适用于一些支持连字的字体。
例如,它适用于默认浏览器字体(Mac Os X 上的 Times),而它不适用于我尝试使用
@font-face
CSS 功能的几种 Google 字体。Is it possible that in webkit browsers this property wasn't yet devoloped?
Or is it a problem of the type of font used by webkit browsers? (
TrueType
,Woff
instead ofOpentype
)?EDIT: In Safari this works with some fonts that support ligatures.
For example it works with the default browser font (Times on Mac Os X), while it doesn't work with a couple of Google fonts I was trying with
@font-face
CSS feature.