Home → References → HTML Tags →
HTML Tag: tbody
Table body. Along with thead and tfoot, tbody can be used to group a series of rows. tbody can be used more than once to separate different sections and must be used if thead and tfoot are used. It must be used within a table element and must follow both thead and tfoot elements when used.
HTML Dog is hosted by Titan Internet
Required Attributes
- None.
Optional Attributes
aligncan be used to horizontally align the cells within the element. The value can beleft,center,right,justifyorchar.valigncan be used to vertically align the cells within the element. The value can betop,middle,bottomorbaseline.charcan be used to specify a character with which cells will align, such as a decimal point. It is not supported by any major browser.charoffcan be used to specify the number of pixels the alignment should be offset from the char character. It is not supported by any major browser.- Common attributes
Example
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Footer 1</td>
<td>Footer 2</td>
<td>Footer 3</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Cell data 1</td>
<td>Cell data 2</td>
<td>Cell data 3</td>
</tr>
<tr>
<td>Cell data 4</td>
<td>Cell data 5</td>
<td>Cell data 6</td>
</tr>
<tr>
<td>Cell data 7</td>
<td>Cell data 8</td>
<td>Cell data 9</td>
</tr>
</tbody>
</table>

