Tr
class Tr(attributes: Attributes, classes: ClassesInterface, children: List<TableCellInterface>) : AbstractTagBuilder<TagInterface> , TrInterface
In HTML, the <tr>
tag is used to define a row in an HTML table. It stands for "table row" and is used to group together a set of table data cells (<td>
) or table header cells (<th>
) that form a single row of content within the table.
(ChatGPT, February 26, 2024)