HTML | <th> axis Attribute Last Updated : 26 Jun, 2019 Comments Improve Suggest changes Like Article Like Report The HTML <th> axis attribute is used to categorize the header cell content. It is used for group related information. This attribute does not display visual effect on the web browser but it is used by screen readers. It is not supported by HTML 5. Syntax: <th axis="category_name"> Attribute Values: category_name: It is used to specify the category name. Example: html <!DOCTYPE html> <html> <head> <title>HTML th axis Attribute</title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML th axis Attribute</h2> <table width="500" border="1"> <tr> <th axis="student_name">NAME</th> <th axis="student_age">AGE</th> <th axis="student_branch">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> axis attribute are listed below: Google Chrome Internet Explorer Firefox Safari Opera Comment More infoAdvertise with us Next Article HTML | <th> axis Attribute J jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <td> axis Attribute The HTML <td> element's axis attribute provides a way to categorize or group table cell data, helping to describe the relationship between cells. It allows for improved accessibility and was mainly used for complex tables, but is now deprecated. Use CSS or ARIA for similar functionality.Syntax 2 min read HTML <th> char Attribute The HTML <th> char attribute is used to specify the alignment to the character of content in a table header cell. It only contains the char align attribute. Its default value is a decimal point for page language. Note: It is not supported by HTML5. Syntax: <th char="character"> Attribute 1 min read HTML <th> charoff Attribute The HTML th charoff Attribute is used to sets the number of characters that aligned the characters specified by the char Attribute. This attribute can only be used in the char attribute and align attribute is specified in the th Element. Note: The th charoff attribute is not supported by HTML 5. Syn 1 min read HTML | <th> scope Attribute 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 1 min read HTML | <th> headers Attribute The HTML <th> headers Attribute is used to specify the table cell containing Header information for the current header cell. Syntax: <th headers="header_id"> Attribute Values: It contains the value i.e header_id which specify the space to the separated list of id's to one or more Header 1 min read Like