HTML 作用域 属性


定义和用法

scope 属性指定标题单元格是否是列、行或列或行组的标题。

scope 属性在普通网页浏览器中没有视觉效果,但可以被屏幕阅读器使用。


适用于

scope 范围属性可用于以下元素:

元素 属性
<th> scope

实例

指定两个标题单元格为列标题:

<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 Yes Yes Yes Yes Yes