-
force cell wrap
I have a table and i do not want the cells to get bigger when more text is entered into the cells, i just want all the cells to stay the same width and wrap the text. Is there a way to do this? I am trying to create a weekly calendar and I want all the cells to stay at 125 pixels wide and wrap if there is more text. i cannot find the answer anywhere.
-
Re: force cell wrap
you should just beable to do this:
Code:
<table width="125">
<td width="100%">Here is some really long text that i am putting here to show you that the table will warp the text down to the next line of the table. you may say i am crazy but it really really should warp the text</td>
</table>