tbody

Anonymous contributor's avatar
Anonymous contributor
Anonymous contributor's avatar
Anonymous contributor
Published Jul 31, 2021Updated Sep 3, 2021
Contribute to Docs

Groups the body content in a table.

Syntax

<tbody>
<!-- Takes in body content -->
</tbody>

Note: The <tbody> element is usually used along with <thead> and <tfoot>. which provides useful semantic information.

Example 1

Grouping the body content in an HTML table.

<table>
<!-- All header content will be inside the <thead> element -->
<thead>
<tr>
<th>Company</th>
<th>Phone</th>
</tr>
</thead>
<!-- All body content will be inside the <tbody> element -->
<tbody>
<tr>
<td>Apple</td>
<td>iPhone</td>
</tr>
<tr>
<td>Samsung</td>
<td>Galaxy</td>
</tr>
</tbody>
</table>
Company Phone
Apple iPhone
Samsung Galaxy

All contributors

Looking to contribute?

Learn HTML on Codecademy