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.
我有一个 div 包含一个textarea元素。 我需要给它正确的垂直尺寸。
textarea
容器 Div 的大小合适。(100%) 我想给出一个最小高度或最小行数,以在必要时提供滚动,以及 100% 的高度(div 的 100%)。 我不能。我不知道该怎么做。我需要一个例子。
非常基本的例子是
<html> <body> <div style="height:100%;border:1px solid green;"> <textarea style="min-height:100px;height:100%;width:100%;border:1px solid red;"></textarea> </div> </body>
边框仅用于显示尺寸。但在你的情况下,它可能会更复杂。请查看包含块和高度计算的定义。