The tbody tag is used to group the body content in an HTML table.
Overview TableThe <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.
ExamplesThis 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
tbody
Microsoft Developer Network: [Windows Internet Explorer API reference Article]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4