The tfoot tag is used to group footer content in an HTML table.
Overview TableThe <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.
ExamplesThe 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
tfoot
Microsoft Developer Network: [Windows Internet Explorer API reference Article]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4