summary屬性指定表內(nèi)容的摘要,summary屬性在普通的Web瀏覽器中沒有視覺效果,但是可以由屏幕閱讀器使用。
以下HTML表格定義了表格內(nèi)容的摘要:
<style>table, th, td { border: 1px solid black;}</style> <table summary="學(xué)生姓名及成績分數(shù)"> <tr> <th>姓名</th> <th>學(xué)分</th> </tr> <tr> <td>張三</td> <td>90</td> </tr> <tr> <td>李四</td> <td>87</td> </tr> </table>測試看看 ?/?
IEFirefoxOperaChromeSafari
summary 屬性在普通的 Web 瀏覽器中沒有視覺效果,但可以通過屏幕閱讀器使用。
HTML5 不支持 <table> summary 屬性。
summary 屬性指定表格內(nèi)容的摘要。
<table summary="text">
值 | 描述 |
---|---|
text | 表格內(nèi)容的摘要。 |