📅  最后修改于: 2023-12-03 15:31:15.714000             🧑  作者: Mango
在 HTML 表格中,<th> 元素标识表格的表头单元格。<th> 元素的 axis 属性可以为单元格标识一个轴(axis)名称,用于标识相关的表头单元格。
<th axis="axis_name">...</th>
<table>
<tr>
<th scope="col" axis="col1">姓名</th>
<th scope="col" axis="col2">年龄</th>
<th scope="col" axis="col3">性别</th>
</tr>
<tr>
<td headers="col1">张三</td>
<td headers="col2">18</td>
<td headers="col3">男</td>
</tr>
</table>
其中 <th> 元素设置了 axis 属性,其中值为 col1、col2 和 col3。这意味着,相关的表格单元格可以使用 headers 属性,通过值来指定相应的轴名称,达到关联表头和内容的效果。
参考链接:W3School