Safari 和 Chrome 上具有 rowspan 的表格的宽度问题
我在 Safari 和 Chrome 上定义了行跨度的表格中,表格单元格宽度出现问题。我不知道这是一个错误还是我遗漏了任何东西。 这是重现它的简单 HTML 代码:
<table style="width:1000px" border="1">
<tr>
<td style="width:50px">a1</td>
<td rowspan="2">b1</td>
<td rowspan="2">c1</td>
</tr>
<tr>
<td>a2 and b2 and c2</td>
</tr>
</table>
在 Firefox I 中,第一列的宽度为 50px,但在 Safari 和 Chrome 中则不然(要大得多)。
I have a problem with table cell width on tables with rowspan defined on Safari and Chrome. I don't know if it's a bug or if I'm missing anything.
This is the simple HTML code to reproduce it:
<table style="width:1000px" border="1">
<tr>
<td style="width:50px">a1</td>
<td rowspan="2">b1</td>
<td rowspan="2">c1</td>
</tr>
<tr>
<td>a2 and b2 and c2</td>
</tr>
</table>
In Firefox I the first column has a width of 50px, but not in Safari and Chrome (much bigger).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论