stefan
stefan

Reputation: 11

google chrome drag textfield

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

Upvotes: 1

Views: 349

Answers (1)

Zarel
Zarel

Reputation: 2201

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.

Upvotes: 2

Related Questions