How do I disable the resizable property of a textarea?

后端 未结 18 1331
北荒
北荒 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:34

    Adding !important makes it work:

    width:325px !important; height:120px !important; outline:none !important;
    

    outline is just to avoid the blue outline on certain browsers.

提交回复
热议问题