HTML <tbody> tag
When writing in HTML (hypertext markup language), the <tbody> tag designates the section of a table containing all of the data cells. It is useful for sectioning off parts of the table to be styled with CSS (cascading style sheets). The following sections contain information about the <tbody> tag, including an example of it in use, and related attributes and browser compatibility.
More advanced tables may include the <caption>, <col>, <colgroup>, <tfoot>, or <thead> elements.
Browsers may use the <tbody> element to enable the scrolling of a table body independently of the header and footer sections.
Example of <tbody> code
<table class="mtable2 tab">
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tbody>
<tr class="tcw">
<td>March</td>
<td>$200</td>
</tr>
<tr class="tcw">
<td>April</td>
<td>$300</td>
</tr>
<tr class="tcw">
<td>May</td>
<td>$250</td>
</tr>
</tbody>
<tfoot>
<tr class="tcw">
<td>Total</td>
<td>$750</td>
</tr>
<tfoot>
</table>
Example result
Month | Savings |
---|---|
March | $200 |
April | $300 |
May | $250 |
Total | $750 |
We have added a few of our own classes to the table using CSS; this action allows us to improve its appearance.
Deprecated attributes
All HTML tags support standard attributes that define the settings of an HTML element. In addition to the standard settings, the <tbody> tag had the following unique attributes that are now deprecated.
Attribute | Description |
---|---|
align | Designates the alignment of content inside an element. |
char | Aligns the content in a <tbody> element to a specific character. |
charoff | Sets the number of characters to offset the content from the character designated by the char attribute. |
valign | Alights the content in a <tbody> element vertically. |
Compatibility
Edge | Internet Explorer | Firefox | Safari | Opera | Chrome |
---|---|---|---|---|---|
All versions | All versions | All versions | All version | All versions | All versions |
Browser, Cell, Class, Column, Compatibility, Container tag, Format, Row, <table>, <tfoot>, <thead>, Web design terms