0
我有這個簡單的模板:Flex的佈局:顯示第一要素,當兩個子元素在同一行
HTML:
.outer {
display: flex;
width: 200px;
}
.inner {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
<div class="outer">
<div class="left inner">The quick brown fox</div>
<div class="right inner">jumps over the lazy dog</div>
</div>
顯示的結果看起來像The quick b... jumps over th...
我怎樣才能讓它嘗試完全展示第一個元素之前把第二個?如果第一部分沒有足夠的空間,只需放下第二部分。
它應該是這個樣子The quick brown fo...
謝謝!
謝謝!如果'.outer'元素只有100px寬?即使第一個元素不適合,我仍然希望省略。像'quic ...' – Guanlun
當然,只要給.inner一個100%的最大寬度, – jas7457