TBody
class TBody(attributes: Attributes, classes: ClassesInterface, children: List<TrInterface>) : AbstractTagBuilder<TagInterface> , TBodyInterface
In HTML, the <tbody>
tag is used to define the body section of an HTML table. It stands for "table body" and is used to group the main content rows (<tr>
) in a table. The <tbody>
element is typically placed after the <thead>
(header) section and before the <tfoot>
(footer) section, if present, within the <table>
element.
(ChatGPT, February 26, 2024)