You are here

CSS

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:

1textarea {
2     resize: none;
3}

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 - CSS