Forum Moderators: open
</tr> and </td> are both optional in HTML, but it is a bad idea to leave them out as this can cause browser inconsistencies (old Netscape versions could leave out large chinks of the table if there were missing end tags, for example. So this is valid HTML: <table>
<tr>
<td><p>text
<table>
<tr>
<td><p>text
</table>
</table> You could force the validator to validate the page as XHTML and ignore the other errors, but that's awkward at best.
I believe that one of the wysiwyg editors can do a proper validation - perhaps Dreamweaver? Has anyone got any other ideas on this?