Menu
The tr tag, or Table Row element, designates a row in a <table>.
The <tr>
tag contains one or more <th> or <td> tags.
<table>
<tr>
<th>This is the heading for the first column</th>
<th>This is the heading for the second column</th>
</tr>
<tr>
<td>First column contents</td>
<td>Second column contents</td>
</tr>
</table>Have a code example of <tr>? Submit a codepen.io demo and we'll showcase it here ↴