html – 为什么iOS Safari添加额外的字母间距?

前端之家收集整理的这篇文章主要介绍了html – 为什么iOS Safari添加额外的字母间距?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想我已经发现了移动版(iOS 8)Safari中的Google字体的网页呈现错误.在我看来,Mobile Safari在使用Google字体的所有文字添加了一小段字母间距,或者使用另一种字体.我尝试哪个Google字体(Open Sans)无关紧要.它在所有现代浏览器上正确呈现.经测试的 Android,FF,Chrome,Safari.

尝试在iOS设备上加载此页面,看看我的意思.另见代码和屏幕截图.查看此链接的实时评论https://dl.dropboxusercontent.com/u/430406/Temp%20%5Bok%20to%20delete%5D/Checking%20Font/index.html

<!DOCTYPE html>
<html>

<head>
  <title></title>
  <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>

<body>
  <h2 style="font-family: 'Roboto'">Roboto: Looks like it gets a bit extra line-spacing in iOS Safari,though this is not possible to find in web inspector</h2>
  <h2 style="font-family: 'Arial'">Arial: Works fine in iOS Safari</h2>
</body>

</html>

解决方法

我在这个问题上找到了解决方案: iOS 4.2+ webfont (ttf) ‘s bold font-weight rendering bug

如果您没有设置字体重量(例如,font-weight:400或font-weight:normal),则Mobile Safari可以渲染人造字体的重量.您需要专门设置css字体的权重才能正确呈现移动野生动物园.

这是解决方案.

h2 {
  font-weight: 400;
}
原文链接:https://www.f2er.com/html/230806.html

猜你在找的HTML相关文章