I want to disable the resizable property of a textarea
.
Currently, I can resize a textarea
by clicking on the bottom right corner of the
CSS 3 can solve this problem. Unfortunately it's only supported on 60% of used browsers nowadays.
For Internet Explorer and iOS you can't turn off resizing, but you can limit the textarea
dimension by setting its width
and height
.
/* One can also turn on/off specific axis. Defaults to both on. */
textarea { resize:vertical; } /* none|horizontal|vertical|both */
See Demo