HTML <th> with axis Attribute
HTML <th> with axis Attribute
The axis
attribute is used to group the header cells.
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
Name | Explanation |
---|---|
ID | Specifies a grouping 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.