I use the php to output the content of the table like this:
<table width="100">
<tr>
<td width="100">
<?php print $content; ?>
</td>
</tr>
</table>
If there is one word in the $content that contains more than 200 characters, the width of table will be very large. Would anyone have the idea for auto-wrap that the table width will not be exceed the width that I set to? Thanks.