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

上一篇: 我如何让用户不允许调整textarea的大小?

下一篇: 如何禁止在ASP.NET MVC 2中调整TextArea.For的大小?