I got a table with 4 columns and several rows.
The problem is that in firefox, if I resize the first TD in the first row from 80px to 120px, the width of the first TDs in the other rows won’t change with the TD in the first row (which means the width of the other TDs remains 80px unchanged).
(Everything is ok in IE.)
I remember that if the width is set on any TD, then the entire column would have that width. But seems Firefox didn’t follow this rule.
The CSS related to the table is given below:
.grid .body_table
{
table-layout:fixed;
}
This sounds very similar to https://bugzilla.mozilla.org/show_bug.cgi?id=735579 and should be fixed in Firefox 14, if so.