最新的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>標記