Disable Textarea Resize

March 29, 2011

Some browsers support resizing textarea controls by dragging a handle in the bottom right corner. This is inappopriate on a fixed width design, or on a CSS popup.

You can turn this off using CSS:

textarea {
    resize: none;
}

Tags: textarea resize html css