previous | start | next

TFOOT

<TFOOT
CLASS=type
ID=value
STYLE=css1 properties>
</TFOOT>

Defines the table footer. Use TFOOT to duplicate footers when breaking a table across page boundaries, or for static headers when body sections are rendered in a scrolling panel.

CLASS=type
Indicates the class to which the element belongs.
ID=value
Specifies a unique value for the element over the document.
STYLE=css1 properties
Specifies style information.

The table footer is optional; if given, only one footer is allowed. The TFOOT element is valid only within a table; you must use a TABLE element before using this element. The end-tag is optional.

Example

<TABLE>
<TBODY>
    <TR>
    ...
    </TR>
<TFOOT>
    <TR>
    ...
    </TR>
</TABLE>


previous | start | next