我想讓一個容器自動展開。爲此,我想使用max-height屬性。這是我的html結構CSS最大高度不起作用
<div class='palm-row first' style="max-height:200px">
<div class="palm-row-wrapper">
<div class="textfield-group" x-mojo-focus-highlight="true"
style="max-height:200px">
<div class="title">
<div class="truncating-text" id="nameField" class="recipient-picker"
x-mojo-element="TextField" style="max-height:200px"></div>
</div>
</div>
</div>
</div>
.recipient-picker{
overflow:hidden;
margin-right:0px;
max-width:300px;
padding-right: 4px;
}
我希望textfield擴展高度。但它不能工作設置最大高度。容器不會改變高度。但是,當我設置最小高度時,將應用正確的高度。
任何想法如何實現這一目標?任何其他想法?
最大高度是一個限制。 「不要超過這個尺寸」。它不會影響元素的高度,除非該元素嘗試生長大於高度限制。 –