- From: Piers Williams <PiersW@zinc.co.uk>
- Date: Thu, 9 Aug 2001 15:07:07 +0100
- To: www-html@w3.org
> -----Original Message----- > From: Frank Tobin [mailto:ftobin@uiuc.edu] > Since <form> can contain block elements, merely put your > entire <table> > inside a <form>. This will ensure well-formedness and XHTML validity. This isn't a viable option if you need multiple forms within a table, which was implied by the original post, and is often a requirement (albeit largely for presentational purposes) I always just wrap the <tr>'s in question with my <form> tags, maintaining at least valid tag containment, though every validator still complains that a <form> tag can't appear within a <table> element: <table> <form> <tr>...</tr> <tr>...</tr> </form> <form> <tr>...</tr> </form> </table>
Received on Thursday, 9 August 2001 10:07:47 UTC