The XHTML WYSIWYG Editor For Desktop & Web Applications

tfoot

Definition

The tfoot element can be used to group table rows that contain table footer information. This may be useful when printing longer tables that span several printed pages, since the data in tfoot is repeated on each page. The tfoot element should appear before tbody elements.

Example

  1. <table border="1" cellpadding="1" cellspacing="2" summary="This table charts the number of cups of coffee consumed by each person, the type of coffee (decaf or regular), and whether taken with sugar.">
  2. <caption>Cups of coffee consumed by each person</caption>
  3. <thead>
  4. <tr>
  5. <th>Name</th>
  6. <th>Cups</th>
  7. <th>Type</th>
  8. <th>Sugar</th>
  9. </tr>
  10. </thead>
  11. <tfoot>
  12. <tr>
  13. <td colspan="4">Survey conducted in 2006.</td>
  14. </tr>
  15. </tfoot>
  16. <tbody>
  17. <tr>
  18. <td>Wendy</td>
  19. <td>10</td>
  20. <td>Regular</td>
  21. <td>yes</td>
  22. </tr>
  23. <tr>
  24. <td>Jim</td>
  25. <td>15</td>
  26. <td>Decaf</td>
  27. <td>no</td>
  28. </tr>
  29. </tbody>
  30. </table>

Attributes

Basic

align

Horizontal alignment in cells. Possible values are:

  • left: Left-justify text. This is the default value for table data cells.
  • center: Center-justify text. This is the default value for table header cells.
  • right: Right-justify text.
  • justify: Left- and right-justify text.
  • char: Align text around a specific character.
valign

Vertical alignment in cells. Possible values are:

  • top: Cell data is flush with the top of the cell.
  • middle: Cell data is centered vertically within the cell. This is the default value.
  • bottom: Cell data is flush with the bottom of the cell.
  • baseline: All cells in the same row as a cell whose valign attribute has this value will have their textual data positioned so that the first text line occurs on a baseline common to all cells in the row.

Advanced

char
(Character) This attribute specifies a single character within a text fragment to act as an axis for alignment. The default value for this attribute is the decimal point character for the current language as set by the xml:lang attribute. For example, the period (".") in English and the comma (",") in French.
charoff
(Length) When present, this attribute specifies the offset to the first occurrence of the alignment character on each line.

Common core attributes

class
(NameTokens) This attribute assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or set of class names. Multiple class names must be separated by white space characters. Class names are typically used to apply CSS formatting rules to an element.
id
(ID) This attribute assigns an ID to an element. This ID must be unique in a document. This ID can be used by client-side scripts (such as JavaScript) to select elements, apply CSS formatting rules, or to build relationships between elements.
title
(Text) This attribute offers advisory information. Some Web browsers will display this information as tooltips. Assistive technologies may make this information available to users as additional information about the element.

Common internationalization attributes

xml:lang
(NameToken) This attribute specifies the base language of an element's attribute values and text content.
dir

This attribute specifies the base direction of text. Possible values:

  • ltr: Left-to-right
  • rtl: Right-to-left

Common event attributes

onclick
(Script) A client-side script event that occurs when a pointing device button is clicked over an element.
ondblclick
(Script) A client-side script event that occurs when a pointing device button is double-clicked over an element.
onmousedown
(Script) A client-side script event that occurs when a pointing device button is pressed down over an element.
onmouseup
(Script) A client-side script event that occurs when a pointing device button is released over an element.
onmouseover
(Script) A client-side script event that occurs when a pointing device is moved onto an element.
onmousemove
(Script) A client-side script event that occurs when a pointing device is moved within an element.
onmouseout
(Script) A client-side script event that occurs when a pointing device is moved away from an element.
onkeypress
(Script) A client-side script event that occurs when a key is pressed down over an element then released.
onkeydown
(Script) A client-side script event that occurs when a key is pressed down over an element.
onkeyup
(Script) A client-side script event that occurs when a key is released over an element.

Common style attribute

style
(Text) This attribute specifies formatting style information for the current element. The content of this attribute is called inline CSS. The style attribute is deprecated (considered outdated), because it fuses together content and formatting.

Contains

See also