HTML <tbody>
Tag Tutorial
The HTML <tbody>
tag is used to group the body content of a table. It is used in conjunction with the <table>
and <tr>
tags to create organized and structured tables.
Usage of the <tbody>
tag:
When creating a table using HTML, the <tbody>
tag is used to group the main body content of the table. This allows for better organization and structure within the table.
Main Attributes of the <tbody>
tag:
Attribute | Description |
---|---|
align | Specifies the alignment of the content within the <tbody> tag. Can be set to "left", "center", or "right". |
valign | Specifies the vertical alignment of the content within the <tbody> tag. Can be set to "top", "middle", or "bottom". |
Examples:
Below is an example of how the <tbody>
tag is used in conjunction with the <table>
and <tr>
tags:
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>25</td>
</tr>
<tr>
<td>Jane</td>
<td>30</td>
</tr>
</tbody>
</table>
In the above example, the <tbody>
tag is used to group the body content of the table, which consists of two rows of data: one row for John and another row for Jane. This helps to organize the content within the table.