例
以下示例标识两个中<th>元素作为标题为列,并且两个的<td>元素作为标题的行:
<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>
试一试» 定义和用法
在<td> scope属性不支持HTML5。
该scope属性定义了一种标题单元和数据单元中的表相关联。
该scope属性标识一个小区是否为列,行或组的列或行的一个标头。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
scope | 是 | 是 | 是 | 是 | 是 |
该scope属性具有在普通的网络浏览器没有视觉效果,但是可以通过屏幕阅读器使用。
句法
<td scope="col|row|colgroup|rowgroup">
属性值
值 | 描述 |
---|---|
col | 指定的小区为列标题 |
row | 指定的小区为行标头 |
colgroup | 指定的小区为一组列的首部 |
rowgroup | 指定的小区为一组行的首标 |