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
If you need deep support, you can use an old school technique:
textarea { max-width: /* desired fixed width */ px; min-width: /* desired fixed width */ px; min-height: /* desired fixed height */ px; max-height: /* desired fixed height */ px; }