Answers for "how to increase the textarea size in html"

2

textarea only one line

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

change font size in textarea html

textarea { font-size: 18px; }
Posted by: Guest on December-06-2020

Code answers related to "how to increase the textarea size in html"

Browse Popular Code Answers by Language