Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within HTML Pages with CSS and JavaScript
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
HTML Pages with CSS and JavaScript
Can i put a table inside tbody of another table?
meera jan
Greenhorn
Posts: 21
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
In my form ,i have a table with thead and tbody.Can i put one more tables inside tbody?
Roy Ivar Moe
Greenhorn
Posts: 21
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hey,
Yes, however, you must put the second table in a cell beloning to the first table.
The following is valid HTML 4.01 Strict:
<table> <thead> <tr><th></th></tr> </thead> <tbody> <tr><td> <table> <thead> <tr><th></th></tr> </thead> <tbody> <tr><td></td></tr> </tbody> </table> </td></tr> </tbody> </table>
Hmmm... looks like a case for CSS ;-)
Regards,
Roy
A "dutch baby" is not a baby. But this tiny ad is baby sized:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Adding a row to a HTML table on-the-fly
creating tables with DOM / IE
Java Scrip not working in Safari.
hiding exceeded data in h:dataTable columns
how to convert table content from html source code into a database
More...