You've probably noticed by now that webkit browsers have a handler to resize textareas. That said, you can control it with one line of CSS.
Disable resize
textarea {
resize: none;
}
Vertical resize only
textarea {
resize: vertical;
}
Horizontal resize only
textarea {
resize: horizontal;
}
Check theses demo showing all possible options
Comments
leave a commente, i don’t know the difference