0

Possible Duplicate:
How to disable resizable property of TextArea?

i want to disable using of resizing in TextArea.For in my webapplication. in google chrome and other browser its looks terrible. how can i do it?

Community
  • 1
  • 1
r.r
  • 6,743
  • 28
  • 85
  • 129

1 Answers1

6

To disable the browsers ability to resize textareas, use the following css:

textarea {
    resize: none;
}
Matthew
  • 23,095
  • 7
  • 70
  • 102