Rows
<table>
<tr>
<th></th>
<th scope="col">Column A</th>
</tr>
<tr>
<th scope="row">Row 1</th>
<td>Cell A1</td>
</tr>
</table>
Table rows are created using the <tr>...</tr>
element. Inside of a <tr>
lives the individual cells (equal to the number of columns), each referenced using a set of <td>
tags.
- Previous
- Next