HTML <td> axis Attribute Last Updated : 03 Oct, 2024 Comments Improve Suggest changes Like Article Like Report 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<td axis="category_name">Attribute Valuescategory_name: It is used to specify the category name.Example: In this example we demonstrate the axis attribute in <td> elements, assigning category information ("student_info") for table cells in a student data table. html <!DOCTYPE html> <html> <head> <title> HTML td axis Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML td axis Attribute</h2> <table width="500" border="1"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td axis="student_info">BITTU</td> <td axis="student_info">22</td> <td axis="student_info">CSE</td> </tr> <tr> <td axis="student_info">RAKESH</td> <td axis="student_info">25</td> <td axis="student_info">EC</td> </tr> </table> </body> </html> Output:Supported Browsers The browser supported by HTML <td> axis attribute are listed below: Google ChromeEdge FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML <td> axis Attribute J jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <th> axis Attribute 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"> Attrib 1 min read HTML | <td> char Attribute The HTML <td> char Attribute is used to specify the alignment to the character of content in a table cell. This attribute only contains char align attribute. Its default value is a decimal point for page language. It is not supported by HTML 5. Syntax: <td char="character"> Attribute Val 1 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 | <td>colspan Attribute The HTML <td> colspan Attribute is used to specify the number of columns a table should span. Syntax: <td colspan="number"> Attribute Values: It contains the numeric value which specifies the number of columns a cell should span. Example: This Example illustrates the use of colspan attri 1 min read HTML | <td> abbr Attribute The HTML <td> abbr attribute is used to specify the shorter version of the content. This attribute is not supported by HTML 5. It does not describe any visual effect but it is used by screen readers. Syntax: <td abbr="text"> Attribute Values: text: It contains the short description of ce 1 min read Like