To wrap text in a td in firefox

Hi,

I have to wrap text in a td in firefox.
My text is long single word like
<td>wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww</td>

How can I wrap it to fit the width of the td.
At the moment it is expanding the width of the whole table.

Any help would be appreciated.

Regards
Isha

Try using this CSS rule:


td{
max-width: 200px; /*Or whatever you'd like your width to be. This may not be necessary.*/
word-wrap: break-word;
}