Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | scope Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The HTML scope Attribute is used to specify the header cell is used for the header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers.
Uses: It is only used in <th> Element. 
Syntax: 
 

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

Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML th scope Attribute
    </title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
 
    <h2>HTML th scope Attribute</h2>
 
    <table border="1" width="500">
        <tr>
            <th scope="col">NAME</th>
            <th scope="col">AGE</th>
            <th scope="col">BRANCH</th>
        </tr>
 
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
 
        <tr>
            <td>RAKESH</td>
            <td>25</td>
            <td>EC</td>
        </tr>
    </table>
</body>
 
</html>

Output: 
 

Supported Browsers: The browsers supported by HTML scope Attribute are listed below: 
 

  • Google Chrome version 1 and above
  • Edge version 12 and above
  • Firefox version 1 and above
  • Internet Explorer
  • Opera
  • Safari 

My Personal Notes arrow_drop_up
Last Updated : 21 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials