當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <td> scope屬性用法及代碼示例


HTML <td>作用域屬性用於指定用於標題行,列,列組或行組的單元格。此屬性在瀏覽器上不顯示任何視覺效果,但用於屏幕閱讀器。

用法:

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

屬性值:


  • col:它指定將標題單元格用於列。
  • row:它指定將標題單元格用於行。
  • colgroup:它指定標題單元格用於列組。
  • rowgroup:它指定標題單元格用於行組。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML scope Attribute</title> 
    <style> 
        table, 
        th, 
        td { 
            border:1px solid black; 
            border-collapse:collapse; 
            padding:6px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <h2>HTML <td>scope Attribute</h2> 
    <center> 
        <table> 
            <tr> 
                <th>Name</th> 
                <th>Age</th> 
            </tr> 
            <tr> 
                <td scope="col">Ajay</td> 
                <!-- This cell will take up space on  
                    two rows -->
                <td>24</td> 
                <td>24</td> 
                <td>44</td> 
            </tr> 
            <tr> 
                <td>Priya</td> 
            </tr> 
        </table> 
    </center> 
  
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <td>範圍屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <td> scope Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。