views:

80

answers:

1

By default, the size of textarea inputs in google chrome is adjustable in the browser. Is there anyway to make it not adjustable?

+5  A: 

You can use this css for that:

textarea {
    resize: none;
}

More Information Here. :)

Sarfraz