表头单元格标签
表头单元格标签
表头单元格位于表格的第一行或者第一列,表头单元格的内容会居中加粗显示。
像这样:
表头 | 表头 | 表头 |
---|---|---|
<th></th>
标签就是表头标签,(table head的缩写)
<table border="1">
<tr>
<th>表头 1</th>
<th>表头 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>