I want to disable the resizable property of a textarea.
textarea
Currently, I can resize a textarea by clicking on the bottom right corner of the
You can simply disable the textarea property like this:
textarea { resize: none; }
To disable vertical or horizontal resizing, use
resize: vertical;
or
resize: horizontal;