Definition
A <tr> element represents a row of table cells.
Example
<table>
<caption>This is the table's caption</caption>
<thead>
<tr>
<th colspan="2">The table header with one column</th>
</tr>
</thead>
<tbody>
<tr>
<td>The table body</td>
<td>with two columns</td>
</tr>
<tr>
<td>The table body</td>
<td>with two rows</td>
</tr>
</tbody>
</table>Usage
- An opening tag is required.
- A closing tag can be omitted if the
<tr>element is immediately followed by another<tr>element or no more content in the parent element. - A
<tr>element may be placed as a child of a<thead>,<tbody>, or<tfoot>element. It can also be placed as a child of a<table>element after any<caption>,<colgroup>, and<thead>elements, but only if there are no child<tbody>elements of the<table>element. - The
<tr>element allows zero or more<td>and<th>elements as children. - You can use the
colspanattribute on child<th>and<td>elements to specify how many columns a particular cell should span. - You can use the
rowspanattribute on child<th>and<td>elements to specify how many rows the cell should span.
Attributes
The <tr> element only supports the Global Attributes.
Specification
Browser Support
Desktop
| Chrome | Edge | Firefox | IE | Opera | Safari |
|---|---|---|---|---|---|
| Yes | Yes | Yes | Yes | Yes | Yes |
Mobile
| Android Webview | Chrome Android | Firefox Android | Opera Android | iOS Safari | Samsung Internet |
|---|---|---|---|---|---|
| Yes | Yes | Yes | Yes | Yes | Yes |
