HTML <th> headers 属性
实例
规定每个表头单元格相关联的 <th> 元素:
<table>
<tr>
<th id="name" colspan="2">Name</th>
</tr>
<tr>
<th headers="name">Firsname</th>
<th headers="name">Lastname</th>
</tr>
</table>
亲自试一试 »
<tr>
<th id="name" colspan="2">Name</th>
</tr>
<tr>
<th headers="name">Firsname</th>
<th headers="name">Lastname</th>
</tr>
</table>
定义和用法
headers 属性规定与表头单元格相关联的一个或多个表头单元格。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
headers | Yes | Yes | Yes | Yes | Yes |
headers 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用。
语法
<th headers="header_id">
属性值
值 | 描述 |
---|---|
header_id | 规定表头单元格关联的一个或多个表头单元格的 id 列表,以空格间隔。 |