Itay Moav -Malimovka
Itay Moav -Malimovka

Reputation: 53606

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

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.

Upvotes: 0

Views: 4010

Answers (1)

Jacob
Jacob

Reputation: 78920

Use this in your CSS:

textarea { resize: none; }

Upvotes: 6

Related Questions