|
DarlingBri -> RE: text wrap in forms (1/29/2004 14:06:39)
|
OK, that was bad advice. I looked it up: wrap There are three values for the wrap attribute,virtual,physical, andoff. Off is the default value. This defines how the text behaves within the textarea space. wrap="off" provides no wrapping. Unless your readers hit <ENTER>, the text they type in will scroll along on one long line. The text will be sent to the server as one long line unless the reader hits the carriage return key. This is an example of a textarea field where the wrap is turned off. wrap="virtual" wraps the text within the space of the text box, but sends it to the server as one long line, as if no wrapping occurred. This is an example of a textarea field where the wrap is virtual. wrap="physical" wraps the text within the text box, and sends it to the server exactly as the reader sees it in the text box. This is an example of a textarea field where the wrap is physical. Your code is <p><textarea rows="9" name="Comments" cols="70" wrap="physical" tabindex="38"></textarea></p> and frankly, that looks fine to me. I'm stumped :(
|
|
|
|