A RetroSearch Logo

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

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-th-headers-attribute/ below:

HTML | <th> headers Attribute

HTML | <th> headers Attribute

Last Updated : 01 Aug, 2022

The HTML <th> headers Attribute is used to specify the table cell containing Header information for the current header cell

Syntax: 

<th headers="header_id">

Attribute Values: It contains the value i.e header_id which specify the space to the separated list of id's to one or more Header cell that the table header cell is related to. 

Example: 

html
<!DOCTYPE html>
<html>

<head>

    <!-- style to set border -->
    <style>
        table,
        th,
        td {
            border: 1px solid black;
        }
    </style>
</head>

<body>

    <h1>GeeksforGeeks</h1>

    <h2>HTML &lt;th&gt;headers Attribute</h2>

    <table>
        <tr>
            <th id="table"
                colspan="3">Username</th>
        </tr>

        <tr>
            <th Headers="Username">geeks</th>
            <th Headers="Username">For</th>
            <th Headers="Username">Geeks</th>
        </tr>
    </table>
</body>

</html>

Output:

  

Supported Browsers: The browsers supported by <th> headers 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