Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 3 down vote accepted

You may want to see this question http://stackoverflow.com/questions/424192/html-textarea-horizontal-scroll

share|improve this answer
Perfect thank you, textarea with wrap='off' does exactly what I wanted in IE/FF/Chrome – Tim Mar 12 '10 at 15:19

If the user’s going to be entering a lot of text, maybe use a <textarea> element instead of <input type="text">.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.