HTML Reference Guide
TBODY
<TBODY
CLASS=type
ID=value
STYLE=css1 properties>
</TBODY>
Creates multiple sections when rules are needed between groups of table rows. The end-tag is required.
- 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.
If a table does not have a header or footer (does not have a THEAD or TFOOT element), the TBODY element is optional. The end-tag is optional.
You can use the TBODY element more than once in a table. This is useful for dividing lengthy tables into smaller units and for controlling the placement of horizontal rules.
Example
<TABLE>
<THEAD>
<TR>
...
</TR>
<TBODY>
<TR>
...
</TR>
</TBODY>
</TABLE>