例
指定的兩個頭細胞是標頭列:
<table>
<tr>
<th></th>
<th scope="col">Month</th>
<th scope="col">Savings</th>
</tr>
<tr>
<td>1</td>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>2</td>
<td>February</td>
<td>$80</td>
</tr>
</table>
試一試» 定義和用法
該scope屬性指定一個標題單元是否為列,行或組的列或行的一個標頭。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
scope | 是 | 是 | 是 | 是 | 是 |
該scope屬性具有在普通的網絡瀏覽器沒有視覺效果,但是可以通過屏幕閱讀器使用。
HTML 4.01和HTML5之間的差異
沒有。
句法
<th scope="col|row|colgroup|rowgroup">
屬性值
值 | 描述 |
---|---|
col | 指定的小區為列標題 |
row | 指定的小區為行標頭 |
colgroup | 指定的小區為一組列的首部 |
rowgroup | 指定的小區為一組行的首標 |