From c9ee2d1a9afd25c4d875cebec4dbcd72d2bdc1a5 Mon Sep 17 00:00:00 2001 From: Antonio Azevedo Date: Mon, 22 May 2023 10:21:22 -0300 Subject: [PATCH] Update TableTag.cs - Footer position Footer should come after body --- src/HtmlTags/TableTag.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HtmlTags/TableTag.cs b/src/HtmlTags/TableTag.cs index 996cd32..1e055f4 100755 --- a/src/HtmlTags/TableTag.cs +++ b/src/HtmlTags/TableTag.cs @@ -15,8 +15,8 @@ public TableTag() : base("table") { THead = new HtmlTag("thead", this); - TFoot = new HtmlTag("tfoot", this).Render(false); TBody = new HtmlTag("tbody", this); + TFoot = new HtmlTag("tfoot", this).Render(false); } public TableTag CaptionText(string text) @@ -96,4 +96,4 @@ public TableRowTag() public HtmlTag Cell() => new("td", this); } -} \ No newline at end of file +}