you should try this CSS instruction:
td { word-wrap: break-word; }
which works in many browsers (yes, including IE 6, even IE 5.5, but not Fx 3.0. It is recognized only by Fx3.5 +. Also good for Saf, Chr and Op, but I donβt know the exact version for these) and do not no harm to others.
If the table width is still corrupted, there is also:
table { table-layout: fixed; } th, td { width: some_value; }
which forces the browser to use a different table algorithm, one where it does not try to adapt many situations, including inconvenient ones, but stick to what the stylesheet says.
Bhavin vora
source share