如何創建固定高度的第一列布局? 我看到一個kevinrose.com博客,我喜歡它,簡單而乾淨的佈局,我想使用該佈局,所以我試圖創建它,但我堅持這個固定的高度,我可以很容易地設置像標題固定的酒吧,但列,我不知道如何做到這一點 例如:如何創建固定高度的第一列布局?
#sidebar
{
background-color: red;
height: 700px;
width: 100px;
float: left;
}
#article
{
background-color: blue;
height: 400px;
width: 200px;
float: left;
}
#like
{
background-color: green;
height: 100px;
width: 200px;
position: fixed;
float: left;
z-index:-5;
}
感謝你的幫助,不敢相信它的簡單 – user1357167
如果答案是正確的,將其設置爲已答覆。 – sphair