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
  • 7,023
  • 28
  • 87
  • 129

1 Answers1

6

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

textarea {
    resize: none;
}
Matthew
  • 24,703
  • 9
  • 76
  • 110