Wrapping output

liunx

Guest
I have an input that I want to create word wrap on it after it is entered. If someone enters a long sentence now it shows as one long sentence without wrapping in my output which is a box. The long sentence forces my output box to look like a rectangle.<br />
<br />
So I need to wrap the output.<br />
<br />
Here is what is happening:<br />
<br />
Long sentence keeps going and going where it extends my output box too long.<br />
<br />
I need it to wrap in my output such as:<br />
<br />
Long sentence keeps going and going<br />
where it extends my output box too long.<br />
<br />
<br />
Here is my html form part:<br />
<br />
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=3><br />
<form action="mypage.html" method=post><br />
<TR><br />
<TD><br />
<TH>Heading</TH><br />
<TD><input name="heading" size=30></TD><br />
</TR><br />
</form><br />
</table><!--content-->Why not use a textarea?<!--content-->Use a textarea.<br />
<br />
<textarea cols="65" rows="5" name="heading" wrap="physical"></textarea><!--content-->
 
Back
Top