How do I disable the resizable property of a textarea?

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

    You can simply disable the textarea property like this:

    textarea {
        resize: none;
    }
    

    To disable vertical or horizontal resizing, use

    resize: vertical;
    

    or

    resize: horizontal;
    

提交回复
热议问题