Designates rows as the table's footer.
HTML Syntax
<TFOOT ALIGN=CENTER | LEFT | RIGHT BGCOLOR=color CLASS=classname ID=value LANG=language LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS STYLE=css1-properties TITLE=text VALIGN=BASELINE | BOTTOM | CENTER | TOP event = script >
Remarks
Valid tags within the TFOOT element include:
The TFOOT element is a block element and requires a closing tag.
This element is available in HTML as of Microsoft® Internet Explorer 3.0, and in script as of Internet Explorer 4.0.
Members
Styles
Example
This example uses the TFOOT element with the TABLE, TBODY, TD, and TR objects to create a table with 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>