HTML <td> axis 属性

返回上一级

axis 属性用于对单元格进行分类,也就是可用于对相关的信息列进行组合

HTML5 不支持 <td> axis 属性

语法

<td axis="category_name"></td>

属性值

描述
category_name 设置类别的名称

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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 axis="name">John Doe</td>
        <td axis="contact">someone@example.com</td>
        <td axis="contact">+45342323</td>
        <td axis="contact">Rosevn 56,4300 Sandnes,Norway</td>
    </tr>
</table>

运行范例 »

返回上一级

HTML 全部标签

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.