HTML <th> 标签scope属性
-
<th>标签scope属性定义和用法
scope属性指定标题单元格是列,行还是列组或行组的标题。
-
<th>标签scope属性浏览器支持
Edge/IE Chrome FireFox Safari Opera 支持 支持 支持 支持 支持 scope属性在普通Web浏览器中没有视觉效果,但可供屏幕阅读器使用。
-
HTML4.01和HTML5之间的差异
没有。
-
<th>标签scope属性语法
<td scope="col|row|colgroup|rowgroup"> -
<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>
-
<th>标签scope属性值
属性值 描述 col 指定标题单元格是列的标题 row 指定标题单元格是行的标题 colgroup 指定标题单元格是一组列的标题 rowgroup 指定标题单元格是一组行的标题