On Dec 5, 2005, at 10:50 AM, qvx wrote:


Thanks!

t=TABLE(null, THEAD(), TBODY(null,TR(null, map(partial(TD,null),
["hello!", "how are you?", "fine"]))), TFOOT())

works. I guess that this means that I have to use this form each time,
regardles off browser.

Well, if you want to support IE, anyway.

Technically, in order to be compliant it needs to look like this:

t = TABLE(null,
    THEAD(null, TR(null, TD())),
    TFOOT(null, TR(null, TD())),
    TBODY(null, ....)
);

Specifically, THEAD and TFOOT must have a TR, which must have a TD.. and THEAD must come before TFOOT which must come before at least one TBODY tag.

Browsers don't seem to care either way, but it's good to follow the specs if the code works.

-bob

Reply via email to