tfoot
Summary
The tfoot tag is used to group footer content in an HTML table.
Overview Table
The <tfoot> element represents the block of rows that consist of the column summaries (footers) for the parent table element, if the tfoot element has a parent and it is a table.
Examples
The following code example uses the tfoot element and the table, tbody, td, and tr elements to create a table that includes the first row in the table body and the second row in the table footer.
<table>
<tbody>
<tr>
<td>
This text is in the table body.
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
This text is in the table footer.
</td>
</tr>
</tfoot>
</table>
Related specifications
See also
Related articles
HTML
tfoot
Tables
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]