| TBODY |
|
| This tag is similiar to the BODY tag of the HTML document in that it contains the main body of information of the table. The THEAD and TFOOT tags must appear previous to the TBODY tag. That is, the order of preference from the top of the HTML document must be THEAD, TFOOT, and lastly TBODY. For example: |
|
| <TABLE>
<THEAD>
</THEAD>
<TFOOT>
</TFOOT>
<TBODY>
</TBODY>
</TABLE> |
|
| TBODY Attributes: |
|
| ALIGN="LEFT, RIGHT, CENTER, JUSTIFY, or CHAR" |
| This attribute defines how the text will be aligned within the table cell. ALIGN="LEFT" will place the text flush with the left side. ALIGN="RIGHT" will place the text flush with the right side. ALIGN="CENTER" will center the text within the cell. ALIGN="JUSTIFY" will space the text evenly across the cell, filling the whole cell. ALIGN="CHAR" will line the text with a common point, the default being the decimal point. |
|
| CHAR=" ... " |
| This attribute is used to define the character upon which the cell contents will align, the default being the decimal point. |
|
| CHAROFF=" ... " |
| This attribute is used to define the character the cell contents will align upon, and is measured from the left hand side of the cell, or column. |
|
| CLASS=" ... " |
| This attribute indicates the style 'class' applicable to the tag to which it has been assigned, the style 'class' being a function of a style sheet. For example, assume the style class 'relaxed' includes text with a font size of 8, and the style class 'active' includes text with a font size of 12. Using the CLASS="relaxed" attribute with a tag will cause the text within that tag to be displayed with a font size of 8. Using the CLASS="active" attribute with a tag will cause the text within that tag to be displayed with a font size of 12. |
|
| ID="n" |
| The ID attribute is used to assign a unique ID selector (identification) to the tag in which it is invoked. A style may be assigned to that ID, which will effect only that one instance of the attribute. |
|
| STYLE=" ... " |
| Used to specify which style sheet commands to apply to the instance of the STYLE attribute invoked within the tag. |
|
| TITLE=" ... " |
| The TITLE attribute is used to display a note or information in a popup window pertaining to the object to which it was assigned. The popup window is invoked by holding the mouse pointer over the object. |
|
| VALIGN="TOP, BOTTOM, MIDDLE, or BASELINE" |
| This attribute defines the vertical lignment of the contents of the cell, or column. |
|
This tag also accepts the following Event Handlers:
onClick
onDblClick
onDragStart
onHelp
onMouseDown
onMouseUp
onMouseOver
onMouseMove
onMouseOut
onKeyPress
onKeyDown
onKeyUp
onSelectStart |