<th> scope 屬性的使用方法,scope 屬性規(guī)定某個表頭單元格是否是列、行、列組或行組的表頭,在線實例演示如何使用 <th> scope 屬性、瀏覽器的兼容性、語法定義及它的屬性值詳細資料等。
把兩個表頭單元格指定為列的表頭:
<table style="width:100%" border="1"> <tr> <th>ID</th> <th scope="col">年份</th> <th scope="col">儲蓄</th> </tr> <tr> <td>1</td> <td>2018</td> <td>$19320.00</td> </tr> <tr> <td>2</td> <td>2019</td> <td>$28320.00</td> </tr> </table>測試看看 ?/?
IEFirefoxOperaChromeSafari
scope屬性在普通的Web瀏覽器中沒有視覺效果,但是可以由屏幕閱讀器使用。
scope 屬性指定某個表頭單元格是否是列、行、列組或行組的表頭。
沒有。
<th scope="col|row|colgroup|rowgroup">
值 | 描述 |
---|---|
col | 指定單元格是列的表頭。 |
row | 指定單元格是行的表頭。 |
colgroup | 指定單元格是列組的表頭。 |
rowgroup | 指定單元格是行組的表頭。 |