A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-td-axis-attribute/ below:

HTML <td> axis Attribute - GeeksforGeeks

HTML <td> axis Attribute

Last Updated : 12 Jul, 2025

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

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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4