Answers for "can we display one line at a time in textarea"

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 "can we display one line at a time in textarea"

Browse Popular Code Answers by Language