HTML table summary 屬性
HTML <table>summary屬性
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>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
瀏覽器支持
summary 屬性在普通的 Web 瀏覽器中沒有視覺效果,但可以通過屏幕閱讀器使用。
定義和用法
HTML5 不支持 <table> summary 屬性。
summary 屬性規定表格內容的摘要。
語法
<table summary="text">
屬性值
值 | 描述 |
---|---|
text | 表格內容的摘要。 |
HTML <table> 標簽