You are here
Disable Textarea Resize
Submitted by Jamie on Fri, 09/02/2011 - 23:41
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.