I viewed the html source code, there is no <tbody>, but when viewed via firebug in the HTML tab, <tbody> appears. Any idea why?
feedback
|
|
Its not firebug, but firefox which does that. This is the way tables are supposed to be written with | |||||||||||||||||||||
feedback
|
|
To summarize the excellent explanations given in the answers and comments by bobince, Kieron, Alohci and others:
| ||||
|
feedback
|
|
Firefox adds them, because the standard says so.
| |||||||||||||||||||||
feedback
|
|
It's not added by firebug, it's added by Firefox. Firebug gives you what the actual dom looks like. If you browse through the various dom elements you'll notice Firefox has added some of it's own style elements as well. | |||
|
feedback
|
|
A.19. Explicit Elements DO use explicit tbody elements within tables. Rationale: While the content model of the table element permits the tbody element to be skipped, in HTML 4 this element is implicit. HTML 4 user agents will silently add this element, thus potentially confusing scripts or style sheets. Source : http://www.w3.org/TR/2009/NOTE-xhtml-media-types-20090116/#compatGuidelines | |||
|
feedback
|