How do I disable the resizable property of a textarea?

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

    To disable resize for all textareas:

    textarea {
        resize: none;
    }
    

    To disable resize for a specific textarea, add an attribute, name, or an id and set it to something. In this case, it is named noresize

    HTML

    
    

    CSS

    /* Using the attribute name */
    textarea[name=noresize] {
        resize: none;
    }
    /* Or using the id */
    
    #noresize {
        resize: none;
    }
    

提交回复
热议问题