HTML <td> with axis Attribute

You are Here:

HTML <td> with axis Attribute

The axis attribute is used to group a data cell with header cell.

Warning: The axis attribute is deprecated and is no longer recommended.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <table> <tr> <th axis="Serial Number">S.No</th> <th axis="name">First Name</th> <th axis="name">Last Name</th> </tr> <tr> <td axis="Serial Number">1</td> <td axis="name">Brendan</td> <td axis="name">Burchard</td> </tr> <tr> <td axis="Serial Number">2</td> <td axis="name">Eich</td> <td axis="name">Jeffer</td> </tr> </table> </body> </html>

Attribute Values

NameExplanation
IDSpecifies a group name.

Reminder

Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in HTML.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author