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
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
/* Using the attribute name */
textarea[name=noresize] {
resize: none;
}
/* Or using the id */
#noresize {
resize: none;
}