--- title:
HTML <th>
元素定义表格内的表头单元格。这部分特征是由 {{htmlattrxref("scope", "th")}} and {{htmlattrxref("headers", "th")}} 属性准确定义的。
内容范畴 | 无 |
---|---|
允许内容 |
流内容(除 header、footer、sectioning content 或 heading content 的继承。)
|
遗漏标签 | 开始标签是必需要的,而结束标签有时可以省略:当其后是{{HTMLElement("th")}} 或 {{HTMLElement("td")}} ,或者其后没有其他数据内容在其父元素内,。 |
允许的父级元素 | {{HTMLElement("tr")}} 元素 |
元素类型 | 任何 |
DOM 接口 | {{domxref("HTMLTableHeaderCellElement")}} |
该元素包含 全局属性
left
: 单元格内容左对齐center
: 单元格内容居中right
: 单元格内容右对齐justify
(仅文字内容): 内容拉伸以覆盖单元格char
(仅文字内容): 内容相对<th>
标签中的某个字符对齐(默认值是页面语言的小数点字符)。该字符由{{htmlattrxref("char", "th")}} 和{{htmlattrxref("charoff", "th")}} 属性定义。对齐方式的默认值是 left
.
left
, center
, right
或 justify
这些对齐效果,应该使用 CSS 的{{cssxref("text-align")}} 来实现。char
的对齐效果使用 CSS 的 {{cssxref("text-align")}} 实现, {{htmlattrxref("char", "th")}}亦同. {{unimplemented_inline}} in CSS3.black = "#000000" |
green = "#008000" |
||
silver = "#C0C0C0" |
lime = "#00FF00" |
||
gray = "#808080" |
olive = "#808000" |
||
white = "#FFFFFF" |
yellow = "#FFFF00" |
||
maroon = "#800000" |
navy = "#000080" |
||
red = "#FF0000" |
blue = "#0000FF" |
||
purple = "#800080" |
teal = "#008080" |
||
fuchsia = "#FF00FF" |
aqua = "#00FFFF" |
<th>
元素中的字母对齐。通常其值包含一个 (.) 来排列数字或者货币值。 如果 {{htmlattrxref("align", "th")}}没有被设置为char
,这个属性就会被忽略。
1
。超过 1000 的值被视作 1000。id
属性一一对应。1.
如果该值被设置为 0
, 这个单元格就被扩展为 ({{HTMLElement("thead")}},{{HTMLElement("tbody")}} 或{{HTMLElement("tfoot")}}) 中表格部分的最后一个元素。比 65534 大的值被视作 65534。row
: 表头关联一行中所有的单元格。col
: 表头关联一列中所有的单元格。rowgroup
:表头属于一个行组并与其中所有单元格相关联。这些单元格可以被放在表头的左侧或右侧,取决于 {{HTMLElement("table")}} 元素中 dir
属性的值 。colgroup
: 表头属于一个列组并与其中所有单元格相关联。auto
baseline
: 将文本置于单元格底部并将其与字母的baseline对齐而不是与底部。若字母没有 baseline 以下的部分(即为无降部)那么 baseline 值起到的效果便和bottom 相同。
bottom
: 将文本置于底部。middle
: 将文本置于单元格中央。top
: 将文本置于单元格顶部。参考 {{HTMLElement("table")}} 中 <th>
的示例内容。
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('HTML WHATWG','tables.html#the-th-element','th element')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C','tabular-data.html#the-th-element','th element')}} | {{Spec2('HTML5 W3C')}} |
{{Compat("html.elements.th")}}
{{HTMLRef}}