TBODY description:
The TBODY tag encloses the rows and cells of the body of an HTML table. Most browsers don't style the rows differently in any way, but you can use style sheets to highlight them if you like.
TBODY Web Browser Support:
- Chrome 1, 2, 3, 4, 5
- Firefox 1, 2, 3
- Internet Explorer 4, 5, 6, 7, 8
- Netscape 6, 7, 8
- Opera 6, 7, 8, 9, 10
- Safari 1, 2, 3, 4, 5
HTML Versions
TBODY Attributes:
TBODY End Tag:
</tbody> optional
Contents:
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 head, body, and foot sections
<table border width="200">
<thead>
<tr>
<td colspan="2">This is the header row</td>
</tr>
</thead>
<tbody>
<tr>
<td>column 1 of the body</td>
<td>column 2 of the body</td>
</tr>
<tr>
<td>row 2 column 1 of the body</td>
<td>row 2 column 2 of the body</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>column 1 part of the footer</td>
<td>column 2 part of the footer</td>
</tr>
</tfoot>
</table>
TBODY Special Notes:
- Long tables can be divided into multiple "body" sections to give more definition to the table.

