HTML <table> 標籤的 summary 屬性

實例

下面的例子定義了表格內容的摘要:

<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>

定義和用法

summary 屬性規定表格內容的摘要。

summary 屬性不會對普通瀏覽器中產生任何視覺變化。

螢幕閱讀器可以利用該屬性。

瀏覽器支援

由於不會在普通瀏覽器中產生任何視覺效果,很難判斷瀏覽器是否支援 summary 屬性。

語法

<body summary="value">

屬性值

描述
text 表格內容的摘要。