i found a bug about java/dom/layout in mozilla/firebird, so i think it's a layout problem
when i set a tr element element.display=none; then element.display=block;
tr became visible but sometimes it add empty line ( like a <br> ) between 2 tr
Why you think TR element should be 'display: block'? TR element is 'table-row':
http://www.w3.org/TR/CSS21/tables.html#value-def-table-row
If you need dynamic effect of hidding table row through JavaScript, change the inline style to hide it, then just clear that change, so it would work in IE, too:
element.display = "none"; then element.display = "";
-- Stanimir _______________________________________________ mozilla-layout mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-layout
