如何禁用文本区域大小调整?

发布于 2025-01-08 07:04:31 字数 109 浏览 0 评论 0原文

我需要禁用文本区域水平调整大小。有时我想允许在文本区域上垂直调整大小。

每当我创建联系我们页面时,文本区域都会使我的设计变得丑陋。

任何人都可以给我一个解决方案来禁用它吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

长发绾君心 2025-01-15 07:04:31

您可以使用CSS。

全部禁用:

textarea { resize: none; }

仅垂直调整大小:

textarea { resize: vertical; }

仅水平调整大小:

textarea { resize: horizontal; } 

禁用垂直和水平限制:

textarea { resize: horizontal; max-width: 400px; min-width: 200px; }

禁用水平和垂直限制:

textarea { resize: vertical; max-height: 300px; min-height: 200px; }

我认为 min-height 应该对你有用。

You can use CSS.

Disable all:

textarea { resize: none; }

Only vertical resize:

textarea { resize: vertical; }

Only horizontal resize:

textarea { resize: horizontal; } 

Disable vertical and horizontal with limit:

textarea { resize: horizontal; max-width: 400px; min-width: 200px; }

Disable horizontal and vertical with limit:

textarea { resize: vertical; max-height: 300px; min-height: 200px; }

I think min-height should be useful for you.

余生再见 2025-01-15 07:04:31

使用像这样的一些 css

textarea
{
   resize: none;
}

或者如果您只想要垂直

textarea { resize:vertical; }

或水平

textarea { resize:horizontal; } 

或两者(不是您的情况)

textarea { resize:both; } 

With some css like this

textarea
{
   resize: none;
}

Or if you want only vertical

textarea { resize:vertical; }

Or horizontal

textarea { resize:horizontal; } 

or both ( not your case)

textarea { resize:both; } 
我早已燃尽 2025-01-15 07:04:31

您可以将其放入 CSS 文件中:

textarea {
  resize: none;
} 

You can put this in the CSS file:

textarea {
  resize: none;
} 
悲凉≈ 2025-01-15 07:04:31

禁用 horizo​​ntalvertical 并进行限制

textarea { 
    width:100%;
    resize:vertical; 
    max-height:250px; 
    min-height:100px; 
}

disable horizontal and vertical with limit

textarea { 
    width:100%;
    resize:vertical; 
    max-height:250px; 
    min-height:100px; 
}
凉城凉梦凉人心 2025-01-15 07:04:31

对于 textarea 我使用了 width: 500px !importantheight: 350px !important,所以这个 CSS 代码阻止了用户调整大小,但如果您有其他标签,则必须使用 resize: none,有关完整说明,请阅读 此链接

例如,对于 p 标记,您必须将 overflow 属性设置为不visible 的值,然后设置 resize >、两者垂直水平

For textarea I used width: 500px !important and height: 350px !important, so this CSS codes prevent user resize, but if you have other tags you must use resize: none, for complete explanations read This Link.

For example, for a p tag you must set overflow property with a value that is not visible and then set resize, none, both, vertical, horizontal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文