Language References
Designates rows as the body of the table. | HTML 4, 4.01, 5 |
HTML Syntax
<tbody
align = center | left | right
bgcolor = color
class = classname
id = value
style = css properties
title = text
valign = baseline | bottom | center | middle | top
event = script
>
This element is exposed for all tables, even if the table did not explicitly define a TBODY element.
This element is a block element.
TBODY Members
This example shows a two-row table. The first row is in the table head. The second row is in the table body.
<table>
<thead>
<tr>
<td>This text is in the THEAD</td>
</tr>
<tbody>
<tr>
<td>This text is in the TBODY</td>
</tr>
</tbody>
</table>
TFOOT THEAD