[q-lang-users] Download page on Opera
Brought to you by:
agraef
From: Andrew B. <and...@ya...> - 2006-12-24 22:15:02
|
I don't know if you care about supporting "alternative" web browsers, but when I look at it with the latest version of Opera, it is pretty funked up. I can send a little screen grab if it helps, but Opera is a free download, and it might be easier to test it yourself. Oh, I've also seen this on both Windows and the Mac. Briefly looking at the source, then at the w3 standards, it looks like multiple "thead" elements are non-standard. (See: http:// www.w3.org/TR/html401/struct/tables.html#h-11.2.3 "Tables rows may be grouped into a table head, table foot, and one or more table bodies.") Looking again at the rendered HTML, it is grouping all of the "thead" elements before all of the "tbody" elements, which I guess is reasonable, given the definition of "thead". Suggested fix: Just change all instances of "thead" into "tbody" entries, since you are not really putting heading information in there anyhow. -andrew |