HTML <table> summary 属性

返回上一级

summary 属性用于设置表格内容的摘要

HTML5 不支持 <table> summary 属性

语法

<table summary="text"></table>

属性值

描述
text 表格内容的摘要

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

summary 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用

范例

下面的 HTML 表格定义了表格内容的摘要

<table border="1" summary="Monthly savings for the Flintstones family">
    <tr>
        <th>Month</th>
        <th>Savings</th>
    </tr>
    <tr>
        <td>January</td>
        <td>$100</td>
    </tr>
</table>

运行范例 »

返回上一级

HTML 全部标签

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

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

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