一个简单的 HTML 表格,包含三行、两个标题单元格和四个数据单元格:
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
亲自试一试 »
下面有更多 "亲自试一试" 示例。
这个<th>
标签定义 HTML 表格中的标题单元格。
HTML 表格有两种单元格:
<th>
元素)文本在<th>
默认情况下,元素是粗体且居中的。
<td> 元素中的文本默认为常规且左对齐。
Element | |||||
---|---|---|---|---|---|
<th> | Yes | Yes | Yes | Yes | Yes |
Attribute | Value | Description |
---|---|---|
abbr | text | Specifies an abbreviated version of the content in a header cell |
colspan | number | Specifies the number of columns a header cell should span |
headers | header_id | Specifies one or more header cells a cell is related to |
rowspan | number | Specifies the number of rows a header cell should span |
scope | col colgroup row rowgroup |
Specifies whether a header cell is a header for a column, row, or group of columns or rows |
这个<th>
标签还支持HTML 中的全局属性。
这个<th>
标签还支持HTML 中的事件属性。
如何对齐 <th> 内的内容(使用 CSS):
<table style="width:100%">
<tr>
<th style="text-align:left">Month</th>
<th style="text-align:left">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
亲自试一试 »
如何向表头单元格添加背景颜色(使用 CSS):
<table>
<tr>
<th style="background-color:#FF0000">Month</th>
<th style="background-color:#00FF00">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
亲自试一试 »
如何设置表格标题单元格的高度(使用 CSS):
<table>
<tr>
<th style="height:100px">Month</th>
<th style="height:100px">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
亲自试一试 »
如何在表头单元格中指定不自动换行(使用 CSS):
<table>
<tr>
<th>Month</th>
<th style="white-space:nowrap">My Savings for a new car</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
亲自试一试 »
如何垂直对齐 <th> 内的内容(使用 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>January</td>
<td>$100</td>
</tr>
</table>
亲自试一试 »
如何设置表格标题单元格的宽度(使用 CSS):
<table style="width:100%">
<tr>
<th style="width:70%">Month</th>
<th style="width:30%">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
亲自试一试 »
如何创建表头:
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td>John Doe</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
</tr>
</table>
亲自试一试 »
如何创建带有标题的表格:
<table>
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
亲自试一试 »
如何定义跨越一行或多列的表格单元格:
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th colspan="2">Phone</th>
</tr>
<tr>
<td>John Doe</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
<td>212-00-546</td>
</tr>
</table>
亲自试一试 »
HTML 教程:HTML 表格
HTML DOM 参考:表头对象
CSS 教程:CSS 表
大多数浏览器都会显示<th>
具有以下默认值的元素:
th {
display: table-cell;
vertical-align: inherit;
font-weight: bold;
text-align: center;
}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!