div inside table
Can somebody tell me whether div inside a table is allowed or not according to w3c echox <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>test</title> </head> <body> <table> <tr> <td> <div>content</div> </td> </tr> </table> </body> </html> This document was successfully checked as XHTML 1.0 Transitional! You can't put a div directly inside a table , like this: <!-- INVALID --> <table> <div> Hello World </div> </table> Putting a div inside a td or th element is fine, however: <!-- VALID --> <table> <tr> <td> <div> Hello World </div> </td> </tr> </table> Paul you can put