How do I disable the resizable property of a textarea?

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

    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;
    }
    

提交回复
热议问题