Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen thead,tbody,but never see tfoot before today!

share|improve this question
theader = table header, tbody = table body, tfooft = table footer. Basically a tabular structure of header, body and footer sections. – Buhake Sindi Feb 20 '10 at 12:09

3 Answers

up vote 3 down vote accepted

tfoot is a valid HTML element, though rarely used. It is supported by all browsers. Here's a related compatibility table.

See 11.2.3 Row groups: the THEAD, TFOOT, and TBODY elements in the w3c spec.

Important point from the spec:

TFOOT must appear before TBODY within a TABLE definition so that user agents can render the foot before receiving all of the (potentially numerous) rows of data.

share|improve this answer

tfoot is defined to be always at the bottom of the table, no matter where in the table you place it. It is meant to be used as some sort of summary that can be displayed even when a big table is still loading. A table layout should look like this:

<table>
  <thead>
    <tr>
      <th>header</th>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <td>Total: foo</td>
    </tr>
  </tfoot>
  <tbody>
    <tr>
      <td>data</td>
    </tr>
    [...]
  </tbody>
</table>

Ofc except for some CMS systems noone uses the tables this way (as they were intended).

share|improve this answer
I think it is also supposed to be repeated (or floated or scrolled) if the table doesn't fit on the screen (or a page, when printing), so that you can always see it, even if the bottom of the table is off screen or on another page. – Jörg W Mittag Feb 20 '10 at 13:49

well, according to google ;) see for instance http://www.htmlcodetutorial.com/tables/_THEAD.html here, tfoot is used for the summarization on the bottom of the table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.