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