0
我想要使用簡單的佈局,側欄,subsidebar和主要內容,所有列的高度必須相同。這裏是當我得到stuk時,如果列是空的,則列需要爲最小屏幕高度,並且如果1列包含元素/內容,則其他列需要具有相同的高度。3列布局需要高度相等
// HET想法
<div id="container">
needs to be min-heigth 100%
<div id="sidebar">
needs to be 40px width
</div>
<div id="subsidebar">
needs to be 200px width
</div>
<div id="content">
needs to be 100% width
<div class="some-element-is-3000">
3000px height(example)
</div>
</div>
</div>
沒有,這是不一樣的,我找了一個沒有固定高度的佈局。佈局必須至少爲屏幕高度的100%。 – user759235