我已经开始使用Google Webfont(https://www.google.com/fonts/specimen/Radley)的Radley字体设计项目。
我注意到了角色序列" st"斜体显示为Windows 7中的空白至少。我想知道是否会丢失一个字形? " S"和" t"斜体单独存在但看起来字体使用连接变体用于某些序列。
这是一个演示:http://codepen.io/nltesown/pen/tpfoy(第二行输出:Ea是我们)
<p>East is West</p>
<p><em>East is West</em></p>
<p><em>Eas t is Wes t</em></p>
使用//fonts.googleapis.com/css?family=Radley:400,400italic
编辑:它似乎是一个Firefox(32?)问题。通常在Chrome或IE中使用。
知道什么是错的吗?
答案 0 :(得分:4)
我遇到了同样的问题,我用以下方法解决了这个问题:
font-style: italic;
text-rendering: initial;
letter-spacing: 0.0003em;
不幸的是,有一些旧的浏览器无法正常工作。
编辑:你也可以尝试添加这一行。
-webkit-font-feature-settings: "liga" 0;
-moz-font-feature-settings: "liga" 0;
font-feature-settings: "liga" 0;
答案 1 :(得分:0)
我有同样的问题。我使用了上面的答案,但发现在iphone 5上进行测试时没有解决。答案:在&#39;之间进行评论。而且&#39;。
eg: "s<!-- fix -->t"
工作了一种享受:)