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 的高度与 textarea 的高度匹配,就好像它只有一行一样。它本质上看起来像一个文本字段。不可重用的方法是使用 height 属性并使 textarea 看起来只跨越一行,但是有可重用的方法吗?
当我使用 CSS 属性 height:auto 时,它跨越两行。
有行属性
<textarea rows="1"></textarea>
小提琴
不过似乎在 Firefox 中不起作用,并且在许多浏览器中,用户可以简单地调整 texarea 的大小。