0

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.

Itay Moav -Malimovka
  • 52,579
  • 61
  • 190
  • 278
  • 1
    I didn't downvote (actually, I'd upvoted before), but my suspicion is that some would say taking off the resizability is evil because it defeats the accessibility feature that it was meant to introduce. – Jacob Aug 03 '11 at 21:12
  • @Jacob Not voting has a different meaning from down-voting. It hints (or should) that there is something wrong with the question itself (either not clear/not to the subject or just spam). – Itay Moav -Malimovka Aug 03 '11 at 22:16

1 Answers1

6

Use this in your CSS:

textarea { resize: none; }
Jacob
  • 77,566
  • 24
  • 149
  • 228