tbody
Summary
The tbody tag is used to group the body content in an HTML table.
Overview Table
The <tbody> element represents a block of rows that consist of a body of data for the parent table element, if the tbody element has a parent and it is a table.
Examples
This example uses the ****tbody**** element with the table, td, thead, and tr elements to create a table with the first row in the table head and the second row in the table body.
<table>
<thead>
<tr>
<td>
This text is in the thead.
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
This text is in the tbody.
</td>
</tr>
</tbody>
</table>
Related specifications
See also
Related articles
HTML
tbody
Tables
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]