HTML <th> 标签

定义和用法

<th> 标签定义 HTML 表格中的标题单元格。

HTML 表格有两种单元格:

  • 标题单元格 - 包含标题信息(使用 <th> 元素创建)
  • 数据单元格 - 包含数据(使用 <td> 元素创建)

默认情况下,<th> 元素中的文本是粗体且居中的。

默认情况下,<td> 元素中的文本是普通的并且左对齐的。

另请参阅:

HTML 教程:HTML 表格

HTML DOM 参考手册:TableHeader 对象

CSS 教程:设置表单的样式

实例

例子 1

一个包含三行、两个标题单元格和四个数据单元格的简单 HTML 表格:

<table>
  <tr>
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>¥4500</td>
  </tr>
</table>

亲自试一试

例子 2

如何对齐 <th> 中的内容(使用 CSS):

<table style="width:100%">
  <tr>
    <th style="text-align:left">月份</th>
    <th style="text-align:left">储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>¥4500</td>
  </tr>
</table>

亲自试一试

例子 3

如何将背景颜色添加到表格标题单元格(使用 CSS):

<table>
  <tr>
    <th style="background-color:#FF0000">月份</th>
    <th style="background-color:#00FF00">储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
 </table>

亲自试一试

例子 4

如何设置表格标题单元格的高度(使用 CSS):

<table>
  <tr>
    <th style="height:100px">月份</th>
    <th style="height:100px">储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 5

如何在表格标题单元格中规定不换行(使用 CSS):

<table>
  <tr>
    <th>月份</th>
    <th style="white-space:nowrap">为新车存的钱</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 6

如何垂直对齐 <th> 中的内容(使用 CSS):

<table style="width:50%;">
  <tr style="height:100px">
    <th style="vertical-align:bottom">月份</th>
    <th style="vertical-align:bottom">储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 7

如何设置表格标题单元格的宽度(使用 CSS):

<table style="width:100%">
  <tr>
    <th style="width:70%">月份</th>
    <th style="width:30%">储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
</table>

亲自试一试

例子 8

如何创建表格标题:

<table>
  <tr>
    <th>姓名</th>
    <th>电邮</th>
    <th>电话</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td>bill.gates@example.com</td>
    <td>138-1234-5678</td>
  </tr>
</table>

亲自试一试

例子 9

如何创建带有标题的表格:

<table>
  <caption>每月储蓄</caption>
  <tr>
    <th>月份</th>
    <th>储蓄</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>¥3400</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>¥4500</td>
  </tr>
</table>

亲自试一试

例子 10

如何定义跨越多行或多列的表格单元格:

<table>
  <tr>
    <th>姓名</th>
    <th>电邮</th>
    <th colspan="2">电话</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td>bill.gates@example.com</td>
    <td>138-1234-5678</td>
    <td>186-2345-6789</td>
  </tr>
</table>

亲自试一试

属性

属性 描述
abbr 文本 规定标题单元格中内容的缩写版本。
colspan 数字 规定标题单元格应跨越的列数。
headers header_id 规定一个或多个与单元格相关的标题单元格。
rowspan 数字 规定标题单元格应跨越的行数。
scope
  • col
  • colgroup
  • row
  • rowgroup
表头单元格是列头、行头还是一组列或行的头部。

全局属性

<th> 标签还支持 HTML 中的全局属性

事件属性

<th> 标签还支持 HTML 中的事件属性

默认的 CSS 设置

大多数浏览器将使用以下默认值显示 <th> 元素:

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: center;
}

浏览器支持

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
支持 支持 支持 支持 支持