I was reading in a forum about According to the W3 specs, This was done to allow the header and footer of a table to load first, before loading in a variable amount of body data, which would otherwise possibly block the loading of the table footer. In the HTML 5.1 spec, In this order: optionally a caption element, followed by zero or more colgroup elements, followed optionally by a thead element, followed by either zero or more tbody elements or one or more tr elements, followed optionally by a tfoot element, optionally intermixed with one or more script-supporting elements. https://www.w3.org/TR/html51/tabular-data.html#tabular-data Before HTML5, element that it must come after
element. In contrast I saw some people use the order
tfoot
has to come before tbody
. (Links to specs here -> Why do internal TABLE sections have to go THEAD TFOOT TBODY to validate?)<tfoot>
can only come after <tbody>
.
<tfoot>
had to come after <thead>
and before <tbody>
. With HTML5, <tfoot>
can come before <tbody>
or after it. But there must be only one <tfoot>
child of a <table>
element, and it must be after <thead>
.