Forum Moderators: open
Does anyone know why this is?
Besides validation, this
<table>
<tr><td colspan="2"></td></tr>
<tr><td>content</td></td>content</td></tr>
</table>
Can cause some issues, "empty cells" will validate but often not render correctly. The workaround is a non breaking space.
<table>
<tr><td colspan="2"> </td></tr>
<tr><td>content</td></td>content</td></tr>
</table>
Show us some code, someone will help.