最新的Web开发教程
 

HTML <th> scope Attribute

<HTML <th>标签

指定的两个头细胞是标头列:

<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属性指定一个标题单元是否为列,行或组的列或行的一个标头。


浏览器支持

属性
scope

scope属性具有在普通的网络浏览器没有视觉效果,但是可以通过屏幕阅读器使用。


HTML 4.01和HTML5之间的差异

没有。


句法

<th scope="col|row|colgroup|rowgroup">

属性值

描述
col 指定的小区为列标题
row 指定的小区为行标头
colgroup 指定的小区为一组列的首部
rowgroup 指定的小区为一组行的首标

<HTML <th>标签