You are here

Forms

Disable Textarea Resize

Categories: 

Newer browsers now include textarea resizing. This is a great feature, except when using something like Drupal that already has resize functionality built in. With a single CSS property applied to textareas, you can quickly disable the native textarea resizing of browsers:

textarea {
     resize: none;
}

Put that in your CSS and you're ready to go. No more native browser textarea resizing to screw with your other resizing handlers.

Subscribe to RSS - Forms