在Android上的Chrome中使用10px字体大小会导致一些间距问题并错过对齐。
是否有任何修复或报告为错误?
第一张图片是iOS上Safari的屏幕截图。第二张图片来自Android 6.0.1上的Chrome(v55)。
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<style type="text/css">
body {
font-size: 16px;
}
span {
background: red;
font-size: 10px;
}
span.em {
font-size: 0.625em;
}
span.small {
font-size: 8px;
}
span.big {
font-size: 12px;
}
</style>
</head>
<body>
<span class="small">Test</span>
<span>Test</span>
<span class="em">Test</span>
<span class="big">Test</span>
</body>
</html>
&#13;