HTML <th> axis 属性
axis 属性用于对表头单元格进行分类,即对相关的信息列进行组合
HTML5 不支持 <th> axis 属性
语法
<th axis=" category_name "></th>
属性值
值 | 描述 |
---|---|
category_name | 设置类别的名称 |
浏览器支持
axis 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用
范例
带有分类表头单元格的 HTML 表格
<table border="1" width="100%"> <tr> <th axis="name">Name</td> <th axis="contact">Email</td> <th axis="contact">Phone</td> <th axis="contact">Address</td> </tr> <tr> <td>John Doe</td> <td>someone@example.com</td> <td>+45342323</td> <td>Rosevn 56,4300 Sandnes,Norway</td> </tr> </table>