我是CSS新手,所以,我不想使用CSS框架。如何用CSS創建這個HTML佈局?
閱讀固定的頁眉和頁腳與CSS(在計算器上)的一些問題後,我試圖創建一個HTML佈局,因爲這:
在這種佈局中,無論是標頭和菜單是固定的。
我已經創建了一個2列的HTML文件:left for menu,right for content。但是,它帶有一個滾動菜單:
#menu {
width: 33%;
height: 100%;
float: left;
}
#page {
width: 66%;
height: 100%;
float: left;
}
#header {
width: 100%;
height: 100px;
position: fixed;
}
#content {
width: 100%;
position: absolute;
top: 100px;
}
#footer {
width: 100%;
height: 100px;
position: fixed;
bottom: 0;
}
<div id="menu">
MENU
</div>
<div id="page">
<div id="header">Header</div>
<div id="content">
<p>Some content...</p>
</div>
<div id="footer">Footer</div>
</div>
當我加入這一行:position: fixed;
在#menu
,佈局將被打破。可以幫助我解決它嗎?
您可以檢查此http:這裏有許多代碼示例 –