I have an input field, a user will write text inside but when the text is to long it just extends horizontally instead of dropping down vertically.
I tried:
overflow: hidden;
word-wrap: break-word;
and I had no luck. Any other suggestions on how to accomplish this?
Xtian - You shouldn't have any restriction on where you need to use an
<input>
or a<textarea>
. Just give the text area the same name that you would've used for the input and you'll be fine.For example, I just replaced
With
Much better now.
I think you should use a multiline input field as TextArea:
http://htmlhelp.com/reference/html40/forms/textarea.html
Sample code: