有什么方法可以禁用 Firefox 4 文本区域大小调整手柄吗?

发布于 2024-11-04 21:43:03 字数 147 浏览 1 评论 0原文

我有一个网站,其文本区域的大小非常具体;调整它的大小可能会让用户认为他们可以在文本区域中输入更多的文本(它受到行和列的限制)。 Firefox 4 自动在文本框的右下角显示“调整大小手柄”,作为用户我可以调整页面上文本区域的大小。有什么办法可以禁用这个吗?

谢谢。

I have a site with a textarea that is a very specific size; resizing it could make the user think that they can enter more text into the textarea than is possible (it is limited by rows and columns). Firefox 4 automatically shows a 'resize handle' in the bottom-right of the textbox and as a user I can resize the textarea on the page. Is there any way to disable this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷︶言冷语的世界 2024-11-11 21:43:03

使用 CSS 并设置样式:

textarea {
    resize: none;
}

Use CSS and style it with:

textarea {
    resize: none;
}
踏月而来 2024-11-11 21:43:03

有时 CSS 不起作用。我已成功删除用户使用内联样式调整文本框大小的能力。这些是浏览器最后处理的,并且对使用什么样式有最终决定权。

Sometimes the CSS will not work. I have successfully removed the users ability to resize the textbox by using an inline style. Those are the last ones processed by the browser and have the final say on what style is used.

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