I have a problem with table cell width in tables with rowspan defined in Safari and Chrome. I do not know if this is a mistake or if I missed something. This is the simple HTML 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, the first column I have is 50 pixels wide, but not in Safari and Chrome (much larger).
source share