Answers for "textarea with multiple lines"

CSS
2

textarea only one line

textarea {
  resize: none;
  white-space: nowrap;
  overflow-x: scroll; /* or hidden */
}
Posted by: Guest on June-24-2020

Code answers related to "textarea with multiple lines"

Browse Popular Code Answers by Language