最新的Web开发教程
 

HTML scope Attribute


定义和用法

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