Is it possible to add a horizontal scrollbar to a text box that works in all browsers? Currently if the text value is bigger than the size of the text box you have to highlight the text and move cursor to the right to see the rest of the text. I'd like user to have a scrollbar to use instead.
+3
A:
You may want to see this question http://stackoverflow.com/questions/424192/html-textarea-horizontal-scroll
ferrari fan
2010-03-12 15:13:52
Perfect thank you, textarea with wrap='off' does exactly what I wanted in IE/FF/Chrome
Tim
2010-03-12 15:19:20
A:
If the user’s going to be entering a lot of text, maybe use a <textarea>
element instead of <input type="text">
.
Paul D. Waite
2010-03-12 15:19:33