How do I disable the resizable property of a textarea?

后端 未结 18 1340
北荒
北荒 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条回答
  •  旧时难觅i
    2020-11-22 10:39

    I have created a small demo to show how resize properties work. I hope it will help you and others as well.

    .resizeable {
      resize: both;
    }
    
    .noResizeable {
      resize: none;
    }
    
    .resizeable_V {
      resize: vertical;
    }
    
    .resizeable_H {
      resize: horizontal;
    }
    
    
    
    
    
    
    

提交回复
热议问题