I have a table inside of a div, the div width is 100% and table width is 200% with overflow auto. Now the normal behavior is: when the table is displayed user must scroll to right in order to see all table columns.
If I want to set for table th class white-space:nowrap; the div will take a width bigger that ruin my form.
table.grid tr th {
border-right: 1px solid #FFFFFF;
white-space: nowrap;
}
Example before adding white-space:nowrap:
http://tabletest.orgfree.com/
Example after adding white-space:nowrap:
http://s7.postimage.org/6rw2idlmj/test.png
this will fix your problem.