Open In App

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 Values

  • category_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:


Next Article

Similar Reads