scope屬性定義了將表中的標題單元格和數(shù)據(jù)單元格關(guān)聯(lián)的方式,scope 屬性標識單元格是列,行還是一組列或行的標題。
下面的示例將兩個<th>元素標識為列的標題,并將兩個<td>元素標識為行的標題:
<table style="width:100%" border="1"> <tr> <th>編號</th> <th scope="col">月份</th> <th scope="col">儲蓄</th> </tr> <tr> <td scope="row">1</td> <td>一月</td> <td>3100</td> </tr> <tr> <td scope="row">2</td> <td>二月</td> <td>2180</td> </tr> </table>測試看看 ?/?
IEFirefoxOperaChromeSafari
scope 屬性在普通的 Web 瀏覽器中沒有視覺效果,但可以通過屏幕閱讀器使用。
HTML5 不支持 <td> scope 屬性。
scope 屬性定義將表格中表頭單元與數(shù)據(jù)單元相關(guān)聯(lián)的方法。
scope 屬性標識某個單元是否是列、行、列組或行組的表頭。
<td scope="col|row|colgroup|rowgroup">
值 | 描述 |
---|---|
col | 指定單元格是列的表頭。 |
row | 指定單元格是行的表頭。 |
colgroup | 指定單元格是列組的表頭。 |
rowgroup | 指定單元格是行組的表頭。 |