Th

In HTML, the <th> tag is used to define header cells in an HTML table. It stands for "table header" and is typically used to represent column or row headings within a table. Header cells are visually bold and centered by default, distinguishing them from regular data cells (<td>).

(ChatGPT, February 26, 2024)

Constructors

Link copied to clipboard
constructor(vararg children: TagInterface)
constructor(attributes: Attributes, vararg children: TagInterface)
constructor(classes: ClassesInterface, vararg children: TagInterface)
constructor(colSpan: ColSpanInterface, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, vararg children: TagInterface)
constructor(attributes: Attributes, colSpan: ColSpanInterface, vararg children: TagInterface)
constructor(classes: ClassesInterface, colSpan: ColSpanInterface, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, colSpan: ColSpanInterface, vararg children: TagInterface)
constructor(attributes: Attributes, classes: ClassesInterface, colSpan: ColSpanInterface, children: List<TagInterface>)

Functions

Link copied to clipboard
open override fun build(): TagInterface
Link copied to clipboard
fun string(): String