Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何禁用 TextArea 的可调整大小的属性?
我想在我的 web 应用程序中禁用 TextArea.For 中的调整大小。在 google chrome 和其他浏览器中,它看起来很糟糕。我该怎么做?
要禁用浏览器调整文本区域大小的功能,请使用以下 css:
textarea { resize: none; }