how to forbid resizing of TextArea.For in ASP.NET MVC 2?
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?
要禁用浏览器调整textareas的大小,请使用以下css:
textarea {
resize: none;
}
链接地址: http://www.djcxy.com/p/27380.html