如何禁用文本区域大小调整?
我需要禁用文本区域水平调整大小。有时我想允许在文本区域上垂直调整大小。
每当我创建联系我们页面时,文本区域都会使我的设计变得丑陋。
任何人都可以给我一个解决方案来禁用它吗?
I need to disable textarea horizontal resize. Sometimes I want to allow vertical resize on the textarea.
Whenever I create a contact us page the textarea is making my design ugly.
could any one give me a solution to disable it please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用CSS。
全部禁用:
仅垂直调整大小:
仅水平调整大小:
禁用垂直和水平限制:
禁用水平和垂直限制:
我认为
min-height
应该对你有用。You can use CSS.
Disable all:
Only vertical resize:
Only horizontal resize:
Disable vertical and horizontal with limit:
Disable horizontal and vertical with limit:
I think
min-height
should be useful for you.使用像这样的一些 css
或者如果您只想要垂直
或水平
或两者(不是您的情况)
With some css like this
Or if you want only vertical
Or horizontal
or both ( not your case)
您可以将其放入 CSS 文件中:
You can put this in the CSS file:
禁用
horizontal
和vertical
并进行限制disable
horizontal
andvertical
with limit对于
textarea
我使用了width: 500px !important
和height: 350px !important
,所以这个CSS
代码阻止了用户调整大小,但如果您有其他标签,则必须使用resize: none
,有关完整说明,请阅读 此链接。例如,对于
p
标记,您必须将overflow
属性设置为不visible
的值,然后设置resize
>、无
、两者
、垂直
、水平
。For
textarea
I usedwidth: 500px !important
andheight: 350px !important
, so thisCSS
codes prevent user resize, but if you have other tags you must useresize: none
, for complete explanations read This Link.For example, for a
p
tag you must setoverflow
property with a value that is notvisible
and then setresize
,none
,both
,vertical
,horizontal
.