How do I disable the resizable property of a textarea?

后端 未结 18 1330
北荒
北荒 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

    To disable the resize property, use the following CSS property:

    resize: none;
    
    • You can either apply this as an inline style property like so:

      
      
    • or in between element tags like so:

      textarea {
          resize: none;
      }
      

提交回复
热议问题