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
To disable the resize property, use the following CSS property:
resize: none;
You can either apply this as an inline style property like so:
or in between element tags like so:
textarea { resize: none; }