my simple textarea doesn't show a horizontal bar when text overflows. It wraps text for a new line. So how do I remove wordwrap and display horizontal bar when text overflows?
|
|
Textareas shouldn't wrap by default, but you can set wrap="off" to explicitly disable wrap:
EDIT: The "wrap" attribute is not officially supported. I got it from the german SELFHTML page (an english source is here) that says IE 4.0 and Netscape 2.0 support it. I also tested it in FF 3.0.7 where it works as supposed. EDIT2: If you want to be sure every browser supports it, you can use CSS to change wrap behaviour:
From here (seems to be an excellent page with information about textarea). |
|||||||||||||||
|
|
The following CSS based solution works for me:
|
|||||
|
also -- contrary to the currently accepted answer -- textareas do often wrap by default. |
|||||
|
|
I found a way to make a textarea with all this working at the same time:
It works well on:
Let me explain how i get to that: I was using Chrome inspertor integrated tool and i saw values on CSS styles, so i try that values, instead of normal ones... try&error till got ity, so finally i got it reduced to minimun and here it is for anyone that wants it. On CSS section i used just this for Chrome, Firefox, Opera and Safari:
On CSS section i used just this for IE:
It was a bit tricky, but there it is the CSS. An (x)HTML tag like this:
And on end of head section a JavaScript like this:
The JavaScript is for making the W3C validator passing XHTML 1.1 Strict, since wrap attibute is not official can not be on (x)HTML tag directly, but most browsers handle it, so after loading the page it sets that attribute. Hope this can be tested on more browsers and versions and help someone to improve it and makes it fully cross-browser for all versions. |
||||
|