CSS textarea - 在 x 或 y 上禁用调整大小?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/25567707/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
textarea - disable resize on x or y?
提问by SaturnsEye
I know it's possible to disable the resize of a textarea
by using:
我知道可以使用以下方法禁用 a 的调整大小textarea
:
textarea {
resize: none;
}
But is it possible to disable either x or y? instead of both
但是可以禁用 x 或 y 吗?而不是两者
回答by Grim...
resize: vertical;
or
或者
resize: horizontal;
Quick fiddle: http://jsfiddle.net/LLrh7Lte/
快速小提琴:http: //jsfiddle.net/LLrh7Lte/
回答by Santosh Khalse
Sure it is possible with css and jquery
当然可以使用 css 和 jquery
CSS:
CSS:
resize: vertical;
resize: horizontal;
jQuery
jQuery
$('textarea').css("resize", "vertical");
$('textarea').css("resize", "horizontal");
Bootstrapjust put the class in Textarea
Bootstrap只是将类放在 Textarea 中
for the vertical resize: vresize
对于垂直调整大小: vresize
for the horizontal resize: hresize
对于水平调整大小: hresize