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 +}