如何禁用HTML <textarea>的大小调整器?
这个问题在这里已经有了答案:
只需使用resize: none
textarea {
resize: none;
}
您也可以决定只调整您的textareas水平或垂直,这样:
textarea { resize: vertical; }
textarea { resize: horizontal; }
最后, resize: both
启用调整大小抓取器。
<textarea style="resize:none" name="name" cols="num" rows="num"></textarea>
只是例子
用于禁用调整大小选项的textarea示例
<textarea CLASS="foo"></textarea>
<style>
textarea.foo
{
resize:none;
}
</style>
链接地址: http://www.djcxy.com/p/4707.html
上一篇: How to disable the resize grabber of an HTML <textarea>?