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?
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?
To disable the browsers ability to resize textareas, use the following css:
textarea {
resize: none;
}