2
我想創建一個佈局,其中有一個固定的寬度和固定位置側邊欄在左邊。兩列固定流體固定的css佈局
問題在於設置主要內容區域的寬度 - 它從屏幕向右伸展。下面是我得到了什麼:
<body>
<div class="left-sidebar">
sidebar
</div>
<div class="main-content">
main
</div>
</body>
CSS:
body {
position: relative;
}
.left-sidebar {
position: fixed;
top: 0;
left: 0;
width: 220px;
}
.main-content {
position: absolute;
top: 0;
left: 220px;
background: #f0f0f0;
width: 100%;
}
我怎麼能在220px從左邊的主要內容DIV的開始,但只有填滿窗口寬度是多少?
如果失敗,請嘗試使用「padding:220px」。 –
謝謝,填充左:220px的工作。我只是不得不調整z-index,以便左側欄位於頂部。 – babbaggeii