<th>

■ 定义

<th>标签定义HTML表格的表头部分

th代表单词table header cell,意为表格中的表头

■ 使用说明

表头单元格也是单元格,常用于表格第一行

为突出重要性,表头单元格里面的文字会加粗并居中显示

必须包含在<table>标签中

■ 示例

<table>
    <tr>
        <th>...</th>  
    </tr>
    <tr>
        <td>...</td>  
    </tr>
    ...
</table>
原文地址:https://www.cnblogs.com/shiliye/p/14132506.html