我想排列多個div。 我已經搜索了stackoverflow和基於我的代碼:How to align two divs side by side using the float, clear, and overflow elements with a fixed position div/。排列多個div並排
我打得與它周圍,並結束了這個CSS:
.frontpageBoxLeft, .frontpageBoxRight {
border-radius: 5px;
border-color: lightgrey;
background: #ffffff;
height: 150px;
}
.frontpageBoxLeft {
margin-bottom:15px;
width: 750px;
min-height: 100px;
position: relative;
}
.frontpageBoxRight {
width: 320px;
float: right;
height: 300px;
position: relative;
vertical-align: top;
}
.frontpageBoxContainer {
width: 70%;
height: 500px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
和這個網站:
<div class="frontpageBoxContainer">
<p class="newsfeedheadline">NEWS FEED</p>
<hr class="hrstarter">
<div class="frontpageBoxLeft" id="1">
et eksempel på en kasse1
</div>
<div class="frontpageBoxLeft" id="2">
et eksempel på en kasse2
</div>
<div class="frontpageBoxLeft" id="3">
et eksempel på en kasse3
</div>
<div class="frontpageBoxRight">
et eksempel på en anden kasse
</div>
</div>
結果是這樣的:
我想能夠把多個div放在左邊,而多個div放在 右邊。 現在,當iam只使用一個右側和一個左側div時,代碼工作正常,但是具有多個div時,它的行爲與圖片中相似。
此致敬禮。
請你分享一下你的代碼,已經採取了上面的截圖?它看起來像我所需要的,但是當我嘗試使用您提供的CSS時,我得不到相同的結果。 – Tony
http://codepen.io/valeri879/pen/yaQYVK 這裏是代碼 –
謝謝你的作品完美! – Tony