How do I disable the resizable property of a textarea?

后端 未结 18 1338
北荒
北荒 2020-11-22 09:56

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

18条回答
  •  一生所求
    2020-11-22 10:35

    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

提交回复
热议问题