Latest web development tutorials

HTML table summary 屬性

HTML table 標籤參考手冊 HTML <table>標籤

實例

下面的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>

嘗試一下»

瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

summary 屬性在普通的Web 瀏覽器中沒有視覺效果,但可以通過屏幕閱讀器使用。


定義和用法

HTML5不支持<table> summary屬性。

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


語法

<table summary="text">

屬性值

描述
text 表格内容的摘要。


HTML table 標籤參考手冊 HTML <table>標籤