下圖是我試圖獲得什麼的例證。第一個數字代表較長的寬度,第二個數字代表較短的寬度。 所有的紅色塊都停留在右側和左側位置,黃色塊應該跟隨容器的寬度。響應式CSS方法
1:http://i.stack.imgur.com/6bHTo.jpg
繼承人我目前的做法
/* the one with black border :) */
.container{
position: relative;
}
/* red blocks have auto heights depends on its content */
.red{
position: absolute;
top: 0;
width: 100px;
}
.red-left{
left:0;
}
.red-right{
right:0;
}
/* yellow block follow the width of the container but should leave spaces for the left and right */
.yellow{
margin: 0 110px;
}
林幾乎滿意然而這種方法,我注意到,當紅色塊都小於容器越高,容器犯規自動跟隨其內容的高度。我明白,它不可能自動調高容器,因爲孩子們的位置是絕對的。 :)
我的眼睛,而看那些圖片傷害。這是你在那裏創造的一種怪異的幻覺!他們正在向對方移動......或者他們是? –
他們是?看起來真的在向對方移動。驚人的我剛剛創建了一個光學幻想LOL – lidongghon