Does XHTML have an 'opinion' regarding the use of <thead>, <tfoot> and <tbody>?
Is there a case where they should be used?
Thank you.
|
Does XHTML have an 'opinion' regarding the use of Is there a case where they should be used? Thank you. |
||||
as stated here http://stackoverflow.com/questions/2700379/what-is-benefit-of-thead/2700400#2700400 If you are using tables to make layout then don't use these. If you are showing tabular data then use it. And if you don't have anything to put in You will find some good answers here also http://stackoverflow.com/questions/2700379/what-is-benefit-of-thead |
|||||||
|
|
They allow you to add semantics to your table, and also allow you to style the head and the foot of the table without introducing redundant classes/ids. I can't think of a situation where you have to use it, although I know some jQuery plugins use the head & foot to control behaviors. If your tabular data needs headings and summary rows, use them, if not don't |
|||
|
|
|
The only rules, that I'm aware of, is that the I think that the purpose of In theory it could also allow for a scrolling
This does not, however, work currently (without using at least two tables, I think). The largest benefit, though, as @Glenn Slaven notes, seems to be semantic. |
|||||||||
|
<table>you are always using at least a<tbody>. A<tbody>element is required in every table, but the opening and closing tags are optional (they can be inferred from the presence of a<tr>). This will be apparent if you ask a<tr>for its.parentNodeor a<table>for its.childNodeseven when you left the<tbody></tbody>out of the document. – Gareth Sep 28 '10 at 23:07