Forum Moderators: mack
Ok, I have my table that I want set at 150px. The contents within the table could be anything, in this case a 50 character string:
12345678901234567890123456789012345678901234567890
Due to the string's length (and it having no spaces) is pushing my table width out.
<table width="150">
<tr><td>
12345678901234567890123456789012345678901234567890
</td></tr>
</table>
I've had this problem a few times now and I know that its probably simple html but I must have been off school that day ;) How do I force a carriage return when it reaches the 150 width limit?