最新的Web开发教程
 

HTML <th> headers Attribute

<HTML <th>标签

指定<th>元素中的每个标题单元格是有关:

<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

headers属性具有在普通的网络浏览器没有视觉效果,但是可以通过屏幕阅读器使用。


HTML 4.01和HTML5之间的差异

headers属性是新换的<th>在HTML5标签。


句法

<th headers="header_id">

属性值

描述
header_id 指定的ID的空格分隔的列表,以一个或多个标题单元的标题单元格是有关

<HTML <th>标签