我有3個div,main,right和left。主div包含右側和左側div,我想並排排列右側和左側div。我在這裏閱讀了幾篇文章,但一直未能獲得理想的結果。如何正確定位div
https://jsbin.com/lagikaxiwe/edit?html,css,output
html,
body {
margin: 0;
padding: 0;
}
div#main-content {
background-color: bisque;
height: 100%;
}
div#right-content {
position: relative;
width: 35%;
height: 100%;
background-color: #ffffff;
}
div#left-content {
position: absolute;
width: calc(100% - 35%);
height: 100%;
margin: 0px 0px 0px 666px;
background-color: #00aeef;
}
<div id="main-content">
<div id="right-content">
</div>
<div id="left-content">
</div>
</div>
絕對定位是佈局網頁的一種非常糟糕的方法。它非常不靈活,並且有更好更快的響應選項。查看[** LearnLayout.com **](http://learnlayout.com/) –
@Paulie_D,感謝您的鏈接。仍在學習如此堅持舊思想的CSS。 – Maddy
我沒有把代碼放在代碼片段中,因爲它沒有顯示整個事情。 – Maddy