最新的Web开发教程
 

HTML <table> summary Attribute

<HTML <table>标记

下面的HTML表定义的表的内容的摘要:

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

定义和用法

<table>总结属性不是HTML5的支持。

summary属性指定一个表的内容的摘要。


浏览器支持

属性
summary

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


句法

<table summary="text">

属性值

描述
text 表的内容的摘要

<HTML <table>标记