> -----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 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Monday, 7 December 2009 10:49:24 GMT