THead
class THead(attributes: Attributes, classes: ClassesInterface, children: List<TrInterface>) : AbstractTagBuilder<TagInterface> , THeadInterface
In HTML, the <thead>
tag is used to group the header rows (<tr>
) in an HTML table. It's a semantic element that indicates the beginning of the header section of a table. The <thead>
element is typically used in conjunction with the <th>
(table header cell) element to define the header cells of the table.
(ChatGPT, February 26, 2024)