当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。