Answers for "size of textarea html"

2

html textarea height

<!-- textarea rows attribute -->
<textarea id="txtid" name="txtname" rows="4" cols="50" maxlength="200">
A nice day is a nice day.
Lao Tseu
</textarea>
Posted by: Guest on April-05-2021
0

change font size in textarea html

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

how to increase the area of a text are

textarea {
  width: 500px;
  height: 200px;
}
Posted by: Guest on July-15-2020

Browse Popular Code Answers by Language