How to set Textarea Fixed size and prevent Resizing in HTML
Textarea should have fixed size by default, but we can make sure it is fixed and also remove the resize grabber.
We can do this with:
- Defining the
height
. - Setting
resize
tonone
.
Example:
<textarea style="height: 70px; resize: none;"></textarea>
Output: