Prevent Word Wrap In A textarea Form Field
September 2014
textarea {
white-space: pre;
word-wrap: normal;
overflow-wrap: normal;
overflow-x: scroll;
}Apparently word-wrap is an alias for overflow-wrap but some browsers support one and some the other.
end of line