The thead element (<thead>) identifies header rows at the top of a table, usually containing column labels. It may contain one or more rows of <th> or <td> cells.
Overview TableThe following code example uses the thead' element and the table, tbody, td, and tr elements to create a table that includes the first row in the table header and the second row in the table body.
<table> <thead> <tr> <th scope="col">Player</th> <th scope="col">Position</th> </tr> </thead> <tbody> <tr> <td>James, Lebron</td> <td>SF</td> </tr> <tr> <td>Wade, Dwayne</td> <td>SG</td> </tr> <tr> <td>Bosh, Chris</td> <td>PF</td> </tr> </tbody> </table>Notes Remarks
Valid tags within the THEAD element include:
You can specify only one thead object specified for any given table object. The table object and its associated elements have a separate table object model, which uses different methods than the general object model.
Standards informationMicrosoft Developer Network: [Windows Internet Explorer API reference Article]
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