tbody
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 |
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.