最新的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