I'm looking for a cross browser solution that makes textarea :
- wrap text only on enter
- scrollbars both hidden, until text overflows
I have tried almost everything can be found in SO...
Failed #1:
textarea{
white-space:nowrap;
overflow: auto;
}
does not work in FF
Failed #2:
textarea{
white-space:nowrap;
overflow: auto; // or scroll
}
+WRAP=OFF attribute
here I cant hit enter in IE (jsFiddle)
Failed #3:
textarea{
white-space:pre;
overflow: auto;
}
+WRAP=OFF attribute
auto line break in IE if I reaches the end