I have a frame that has text outputted into a table through PHP. The problem is that the text in the frame will scroll off its sides. is there a way to make a frame wrap so it doesn't exceed its width?
Printable View
I have a frame that has text outputted into a table through PHP. The problem is that the text in the frame will scroll off its sides. is there a way to make a frame wrap so it doesn't exceed its width?
first of all,
in your frameset tag you should put scrolling to no
and in your frame, put a table the size of the frames,
that way your text will be wraped!
The place where you r outputting the text i mean the TD
use nowrap....
<TD nowrap width="100px">Your Text goes here </TD>
Sonia