TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Isn't it strange that TFOOT must be placed between THEAD and TBODY?

1 pointsby webuiarchitectover 14 years ago
In an HTML <table>, the TFOOT element must be placed between THEAD And TBODY. http://htmlhelp.com/reference/html40/tables/tfoot.html. What could be the reason behind this?

2 comments

mooism2over 14 years ago
So that if the tbody is set up with its own scroll bar, the initial parts of the tbody can appear between the thead and the tfoot before the tbody has finished downloading.
评论 #2259292 未加载
jsavimbiover 14 years ago
Note: &#60;tfoot&#62; must appear before &#60;tbody&#62; within a table, so that a browser can render the foot before receiving all the rows of data.<p>^^I saw that on my first google search.