how to fix the textarea size in html code example
Example 1: 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>
Example 2: fix textarea size
resize: none;
Example 3: change font size in textarea html
textarea { font-size: 18px; }
Example 4: how to make textarea fixed size
resize: none;