这是一个带有 2 个 TD 的简单表格。 http://z5h.github.io/broken_render/broken.html
在 Android 上最近的 Chrome / Firefox 上,它们以非常不同的大小呈现。我不清楚为什么。
在桌面浏览器上,它们没有。
减少第一个 td 中的文本数量可以解决问题。指定每个元素样式不会更改字体大小。例如 http://z5h.github.io/broken_render/broken-styled.html
为什么是这样?
代码是
<html>
<head>
<meta content='text/html;charset=utf-8' http-equiv='Content-Type'>
</head>
<body>
<table>
<tr>
<td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</td>
</tr>
<tr>
<td>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</td>
</tr>
</table>
</body>
</html>
这是在 Nexus 4 上完全最新的 Chrome 上的样子。在 Firefox 上也有同样的问题。