1

Hello,

If I use rowspan in a table that has border-collapse style the border on the second row, to the right of the rowspan cell will have a double-border.

Example: Take exemple00.php, modify the cell E1 to have rowspan=2 and delete the F1 cell.

The cell with F2 will now have two borders to the left:

tromb Fichier joint : nbIk (rowspan.png)

Is there an easy fix to this?

2

The only solution I found for this bug is to use non breaking space eg

<td colspan='3'>hello there how are you</td>

becomes

<td colspan='3'>hello&nbsp;there&nbsp;how&nbsp;are&nbsp;you</td>

Its a bloody annoying bug.