tbody
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 |