HTML td scope 屬性
HTML <td>scope屬性
HTML <td> 標(biāo)簽
實例
下面的實例把兩個 <th> 元素標(biāo)識為列的表頭,把兩個 <th> 元素標(biāo)識為行的表頭:
<table border="1">
<tr>
<th></th>
<th scope="col">Month</th>
<th scope="col">Savings</th>
</tr>
<tr>
<td scope="row">1</td>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td scope="row">2</td>
<td>February</td>
<td>$80</td>
</tr>
</table>
<tr>
<th></th>
<th scope="col">Month</th>
<th scope="col">Savings</th>
</tr>
<tr>
<td scope="row">1</td>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td scope="row">2</td>
<td>February</td>
<td>$80</td>
</tr>
</table>
瀏覽器支持
scope 屬性在普通的 Web 瀏覽器中沒有視覺效果,但可以通過屏幕閱讀器使用。
定義和用法
HTML5 不支持 <td> scope 屬性。
scope 屬性定義將表格中表頭單元與數(shù)據(jù)單元相關(guān)聯(lián)的方法。
scope 屬性標(biāo)識某個單元是否是列、行、列組或行組的表頭。
語法
<td scope="col|row|colgroup|rowgroup">
屬性值
值 | 描述 |
---|---|
col | 規(guī)定單元格是列的表頭。 |
row | 規(guī)定單元格是行的表頭。 |
colgroup | 規(guī)定單元格是列組的表頭。 |
rowgroup | 規(guī)定單元格是行組的表頭。 |
HTML <td> 標(biāo)簽