开发者

Width issue on tables with rowspan on Safari and Chrome [closed]

开发者 https://www.devze.com 2023-02-06 19:49 出处:网络
This question is un开发者_C百科likely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not gene
This question is un开发者_C百科likely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 11 years ago.

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>

Width issue on tables with rowspan on Safari and Chrome [closed]

In Firefox I the first column has a width of 50px, but not in Safari and Chrome (much bigger).

0

精彩评论

暂无评论...
验证码 换一张
取 消