How do I block the expandable textarea feature in Firefox5 and up?

4k Views Asked by At

In Firefox 5 <textarea>s are expandable (bottom right corner there is a hook).

How do I make a textarea solid/un-expandable?
Preferably through CSS.

1

There are 1 best solutions below

0
On BEST ANSWER

Use this in your CSS:

textarea { resize: none; }