<tbody> description:
The <tbody> element defines table bodies.
<tbody> Web Browser Support:
- Netscape 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 4, 5, 6
- Opera 6, 7, 8
- Safari 1
- HTML 4.0
- XHTML 1.0: XHTML Basic Tables Module, XHTML Tables Module
<tbody> Attributes:
- align (optional)
- char (optional)
- charoff (optional)
- class (optional)
- dir (optional)
- id (optional)
- lang (optional)
- onclick (optional)
- ondblclick (optional)
- onkeydown (optional)
- onkeypress (optional)
- onkeyup (optional)
- onmousedown (optional)
- onmousemove (optional)
- onmouseout (optional)
- onmouseover (optional)
- onmouseup (optional)
- style (optional)
- title (optional)
- valign (optional)
<tbody> End Tag:
</tbody> optionalContents:
Table rows. The following tags are valid within the <tbody> tag:
tr
<tbody> Valid Context:
The <tbody> tag is valid within the following tags:
table
<tbody> Usage:
- table with tbody
<table border width="200">
<tr><td>
column 1
</td><td>
column 2
</td></tr>
<tbody>
<tr><td colspan="2">this is the body row</td></tr>
</tbody>
</table>
<tbody> Special Notes:
- Long tables can be divided into multiple "body" sections to give more definition to the table.

