<TFOOT> Tag & its Attribute
HTML Tag <TFOOT>
<TFOOT> Defines a table footer within a table. It must precede the <TBODY> tag.
Attribute of <TFOOT> Tag
ALIGN
Specifies how text within the table footer will line up with the edges of the table cells, or if ALIGN=CHAR, on a specific character (the decimal point).
<TR>
<THEAD>
<TH><B>Tutorial</B></TH>
<TH>
<IMG SRC="logo.gif" ALT="logo" BORDER=0>
</TH>
</THEAD>
</TR>
Possible Values
LEFT, RIGHT, CENTER, JUSTIFY, CHAR
CHAR
Specifies the character on which cell contents will align, if ALIGN="CHAR". If you omit CHAR=, the default value is the decimal point in the specified language.
<THEAD ALIGN="CHAR" CHAR=",">
Possible Values
Any Character.
CHAROFF
Specifies the number of characters from the left at which the alignment character appears.
<THEAD ALIGN="CHAR" CHAR="," CHAROFF="7">
Possible Values
Any Integer Number.
CLASS
Indicates which style class applies to the <TFOOT> element.
<TFOOT CLASS="dkm>
Possible Values
Any Class Name.
ID
Assigns a unique ID selector to an instance of the <TFOOT> tag. When you then assign a style to that ID selector, it affects only that one instance of the <TFOOT> tag.
<TFOOT ID="dkm">
Possible Values
Any ID Name.
STYLE
Specifies Style Sheet commands that apply to the contents between the <TFOOT> tags.
<TFOOT STYLE="background: red">
Possible Values
CSS Property with value.
TITLE
Specifies text assigned to the tag. You might use this attribute for context-sensitive help within the document. Browsers may use this to show tool tips over the table footer.
<TFOOT TITLE="Table Footer">
Possible Values
Any Text Message.
VALIGN
Aligns the contents of the table footer with the top, bottom, or middle of the footer container.
<TFOOT ALIGN=CENTER VALIGN=TOP>
Possible Values
TOP, BOTTOM, MIDDLE, BASELINE