最新的Web開發教程
 

HTML <td> scope Attribute

<HTML <td>標籤

以下示例標識兩個中<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 指定的小區為一組行的首標

<HTML <td>標籤