views:

28

answers:

1

Im making a website, in one of my pages im using a textarea, but when im look in google chrome i can drag the textarea very big. is there a way to disable this?

THNX! Stefan

+2  A: 

Add the CSS rule

textarea
{
    resize: none;
}

Keep in mind that this generally should not be done unless your textarea has its own resize bar (like in Stack Overflow), resizes automatically, or is already very large.

Zarel