<TFOOT> | NN n/a IE 3 HTML 4 | ||
<TFOOT>...</TFOOT> | End Tag: Optional | ||
A TFOOT element is a special-purpose container of one or more rows of table cells rendered at the bottom of the table. Typically, the TFOOT element mirrors the THEAD element content for users who have scrolled down the page (or for future browsers that scroll inner table content). No more than one TFOOT element may be defined within a single TABLE element, and the TFOOT element should be located in the source code before any TBODY elements defined for the table. A TFOOT element is a row grouping, like the TBODY and THEAD elements. Navigator 4 ignores the TFOOT tag and therefore renders the nested TR element(s) as regular TR elements in source code order. | |||
Example
<TABLE COLS=3> <THEAD> <TR> <TH>Time<TH>Event<TH>Location </TR> </THEAD> <TFOOT> <TR> <TH>Time<TH>Event<TH>Location </TR> </TFOOT> <TBODY> <TR> <TD>7:30am-5:00pm<TD>Registration Open<TD>Main Lobby </TR> <TR> <TD>9:00am-12:00pm<TD>Keynote Speakers<TD>Cypress Room </TR> </TBODY> </TABLE> | |||
Object Model Reference
|
ALIGN | NN n/a IE 4 HTML 4 | ||||||||||||||||||
ALIGN=" | Optional | ||||||||||||||||||
Establishes the horizontal alignment characteristics of content within the row(s) covered by the TFOOT element. The HTML 4.0 specification defines settings for the ALIGN attribute that are not yet reflected in the CSS specification. Therefore, this ALIGN attribute is not fully deprecated as it is for many other elements. As a rule, alignment should be specified by style sheet wherever possible. | |||||||||||||||||||
Example
<TFOOT ALIGN="center"> | |||||||||||||||||||
Value HTML 4.0 and IE 4 have two sets of attribute values:
| |||||||||||||||||||
| |||||||||||||||||||
Object Model Reference
|
BGCOLOR | NN n/a IE 4 HTML n/a | ||
BGCOLOR=" | Optional | ||
Establishes a fill color (behind the text and other content) for the cells contained by the TFOOT element. | |||
Example
<TFOOT BGCOLOR="tan"> | |||
Value A hexadecimal triplet or plain-language color name. A setting of empty is interpreted as "#000000" (black). See Appendix A for acceptable plain-language color names. | |||
| |||
Object Model Reference
|
CHAR | NN n/a IE n/a HTML 4 | ||
CHAR=" | Optional | ||
The text character used as an alignment point for text within a cell. This attribute is of value only for the ALIGN attribute set to "char". | |||
Example
<TFOOT ALIGN="char" CHAR="."> | |||
Value Any single text character. | |||
|
CHAROFF | NN n/a IE n/a HTML 4 | ||
CHAROFF=" | Optional | ||
Sets a specific offset point at which the character specified by the CHAR attribute is to appear within a cell. This attribute is provided in case the browser default positioning does not meet with the design goals of the table. | |||
Example
<TFOOT ALIGN="char" CHAR="." CHAROFF="80%"> | |||
Value Any length value in pixels or percentage of cell space. | |||
|
VALIGN | NN n/a IE 4 HTML 4 | ||
VALIGN=" | Optional | ||
Determines the vertical alignment of content within cells of the column(s) covered by the TFOOT element. You can override the vertical alignment for a particular cell anywhere in the column. | |||
Example
<TFOOT VALIGN="bottom"> | |||
Value Four constant values are recognized by both IE 4 and HTML 4.0: top | middle | bottom | baseline. With top and bottom, the content is rendered flush (or very close to it) to the top and bottom of the table cell. Set to middle (the default), the content floats perfectly centered vertically in the cell. When one cell's contents might wrap to multiple lines at common window widths (assuming a variable table width), it is advisable to set the VALIGN attribute to baseline. This assures that the character baseline of the first (or only) line of a cell's text aligns with the other cells in the row--usually the most aesthetically pleasing arrangement. | |||
| |||
Object Model Reference
|