最适合网络开发者的网站
HTML5。英语版 W3Schools。完整标签指南

尿素

HTML <th> 标签


例子

A simple HTML table with three rows, two header cells and four data cells:

<table>
  <tr>
<th>月</th>
<th>储蓄</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
  <tr>
<td>二月</td>
<td>80美元</td>
  </tr>
</table>
亲自尝试 »

下面有更多“自己尝试”的示例。


定义和用法

<th> tag defines a header cell in an HTML table.

HTML 表格有两种单元格:

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

文本 <th> elements are bold and centered by default.

The text in <td> elements are regular and left-aligned by default.


浏览器支持

元素
<th> 是的 是的 是的 是的 是的

属性

属性 价值 描述
abbr text Specify an abbreviated version of the content in a header cell
科尔斯潘 数字 Specify the number of columns a header cell should span
标题 header_id 规定与单元格相关的一个或多个标题单元格
行跨度 数字 Specify the number of rows a header cell should span
scope col
colgroup
row
rowgroup
Specify whether a header cell is a header for a column, row, or group of columns or rows

全局属性

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


事件属性

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


更多示例

例子

How to align content inside <th> (with CSS):

<table style="width:100%">
  <tr>
    <th style="text-align:left">Month</th>
    <th style="text-align:left">Savings</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
  <tr>
<td>二月</td>
<td>80美元</td>
  </tr>
</table>
亲自尝试 »

例子

How to add background-color to table header cell (with CSS):

<table>
  <tr>
    <th style="background-color:#FF0000">Month</th>
    <th style="background-color:#00FF00">Savings</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
 </table>
亲自尝试 »

例子

How to set the height of a table header cell (with CSS):

<table>
  <tr>
    <th style="height:100px">Month</th>
    <th style="height:100px">Savings</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
</table>
亲自尝试 »

例子

How to specify no word-wrapping in table header cell (with CSS):

<table>
  <tr>
<th>月</th>
    <th style="white-space:nowrap">My Savings for a new car</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
</table>
亲自尝试 »

例子

How to vertically align content inside <th> (with CSS):

<table style="width:50%;">
  <tr style="height:100px">
    <th style="vertical-align:bottom">Month</th>
    <th style="vertical-align:bottom">Savings</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
</table>
亲自尝试 »

例子

How to set the width of a table header cell (with CSS):

<table style="width:100%">
  <tr>
    <th style="width:70%">Month</th>
    <th style="width:30%">Savings</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
</table>
亲自尝试 »

例子

如何创建表头:

<table>
  <tr>
<th>姓名</th>
<th>电子邮件</th>
<th>电话</th>
  </tr>
  <tr>
<td>约翰·多伊</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
  </tr>
</table>
亲自尝试 »

例子

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

<table>
<caption>每月储蓄</caption>
  <tr>
<th>月</th>
<th>储蓄</th>
  </tr>
  <tr>
<td>一月</td>
<td>100美元</td>
  </tr>
  <tr>
<td>二月</td>
<td>80美元</td>
  </tr>
</table>
亲自尝试 »

例子

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

<table>
  <tr>
<th>姓名</th>
<th>电子邮件</th>
    <th colspan="2">Phone</th>
  </tr>
  <tr>
<td>约翰·多伊</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
    <td>212-00-546</td>
  </tr>
</table>
亲自尝试 »

相关页面

HTML 教程: HTML 表格

HTML DOM 参考: TableHeader Object

CSS 教程: 表格样式


默认 CSS 设置

大多数浏览器会显示 <th> 元素具有以下默认值:

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