1

Possible Duplicate:
how remove wordwrap from textarea

Can't figure out how to disable word wrapping in texarea. What is the CSS equivalent of wrap="off" cross browser?

Community
  • 1
  • 1
vladaruz
  • 229
  • 5
  • 11
  • This was already answerd [how remove wordwrap from textarea](http://stackoverflow.com/questions/657795/how-remove-wordwrap-from-textarea) – jitter Jun 22 '09 at 10:04

1 Answers1

-1
<textarea name="nowrap" cols="20" rows="5" style="white-space:nowrap;overflow:auto;"></textarea>
karim79
  • 339,989
  • 67
  • 413
  • 406