<th>
优质
小牛编辑
126浏览
2023-12-01
描述 (Description)
HTML
标记用于指定表中的标题单元格或表格标题。例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML th Tag</title>
</head>
<body>
<table border = "1">
<tr>
<th>ID</th>
<th>Product Details</th>
</tr>
<tr>
<td>00L1</td>
<td>i3, 500gb laptop</td>
</tr>
</table>
</body>
</html>
全局属性 (Global Attributes)
此标记支持 - HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML
标记还支持以下附加属性 -属性 | 值 | 描述 |
---|---|---|
abbr | abbreviated_text | Deprecated - 指定标题单元格中内容的缩写版本。 |
align | right left center justify char | Deprecated - 标题单元格中的内容对齐方式。 |
axis | name | Deprecated - 指定此类别。 |
bgcolor | rgb(x,x,x) #hexcode colorname | Deprecated - 指定标题单元格的背景颜色。 |
char | character | Deprecated - 指定要对齐文本的字符。 align =“char”时使用 |
charoff | 像素或% | Deprecated - 指定使用char属性指定的第一个字符的对齐偏移(以像素或百分比值表示)。 align =“char”时使用 |
colspan | number | 指定标题单元格跨越的列数。 |
headers | id | 指定与单元格相关的一个或多个标题单元格。 |
height | pixels | Deprecated - 指定标题单元格的高度。 |
nowrap | nowrap | Deprecated - 防止文本自动换行。 |
rowspan | numbers | 指定标题单元格跨越的行数。 |
scope | col colgroup row rowgroup | 此属性用于标题单元格,并指定将使用此标题信息的单元格。 |
valign | top middle bottom baseline | Deprecated - 垂直对齐。 |
width | 像素或% | Deprecated - 指定标题单元格的宽度 |
事件属性 (Event Attributes)
此标记支持 - HTML Events Reference描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |