The HTML <th> scope Attribute is used to specify the header cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers.
Syntax:
<th scope="col | row | colgroup | rowgroup">
Attribute Values:
- col: It specifies that the header cell is used for column.
- row: It specifies that the header cell is used for row.
- colgroup: It specifies that the header cell is used for group of column.
- rowgroup: It specifies that the header cell is used for group of row.
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 browser supported by HTML <th> scope attribute are listed below:
- Google Chrome 1
- Edge 12
- Internet Explorer
- Firefox 1
- Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
01 Aug, 2022
Like Article
Save Article