How do I disable the resizable property of a textarea?

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

    Inline Style:

    
    

    In Cascading Style Sheet:

    textarea {
      resize: none;
    }
    

    In Javascript:

    document.querySelector('.myTextArea').style.resize = 'none';
    

    In jQuery:

    $('.myTextArea').css({'resize': 'none'});
    

提交回复
热议问题