I found out that the following css property disables line wrapping in a html textarea.
textarea {
white-space: nowrap;
}
This is however causing a strange behaviour. Every few refreshes, all newlines in the textarea seem to disappear, putting all text on one line.
I'm using google chrome 12.0.x
Is this a known bug or is it more likely to be an error on my part somewhere else?