Possible Duplicate:
how remove wordwrap from textarea
I have a textarea which I fill in PHP (I'm reading the text from a text file).
Now, if the text is longer than the text-area, it wraps it instead of showing a horizontal scroll bar. And I want to change this.
I've tried those possibilities in CSS, and none of them worked:
overflow: auto
overflow: scroll
overflow-x: scroll
Can somebody help please?
Thanks!