<tfoot> description:
The <tfoot> element defines the rows that are part of the foot of the table.
<tfoot> Web Browser Support:
- Netscape 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 4, 5, 6
- Opera 6, 7, 8
- Safari 1
- HTML 4.0
- XHTML 1.0: XHTML Basic Tables Module, XHTML Tables Module
<tfoot> Attributes:
- align (optional)
- char (optional)
- charoff (optional)
- class (optional)
- dir (optional)
- height (optional)
- id (optional)
- lang (optional)
- onclick (optional)
- ondblclick (optional)
- onkeydown (optional)
- onkeypress (optional)
- onkeyup (optional)
- onmousedown (optional)
- onmousemove (optional)
- onmouseout (optional)
- onmouseover (optional)
- onmouseup (optional)
- style (optional)
- title (optional)
- valign (optional)
- width (optional)
<tfoot> End Tag:
</tfoot> optionalContents:
Table rows. The following tags are valid within the <tfoot> tag:
tr
<tfoot> Valid Context:
The <tfoot> tag is valid within the following tags:
table
<tfoot> Usage:
- table with tfoot
<table border width="200">
<tbody>
<tr><td colspan="2">this is the body row</td></tr>
</tbody>
<tfoot>
<tr><td>
column 1 part of the footer
</td><td>
column 2 part of the footer
</td></tr>
</tfoot>
</table>
<tfoot> Special Notes:
- Long tables can be divided into sections to give more definition to the table.

