私は次のhtmlを持っています...
<div class="header"></div>
<div class="main"></div>
<div class="footer"></div>
そして次のcss...
.header{
position: fixed;
background-color: #f00;
height: 100px;
}
.main{
background-color: #ff0;
height: 700px;
}
.footer{
position: fixed;
bottom: 0;
background-color: #f0f;
height: 120px;}
しかし、ヘッダーとフッターが固定されていないのはなぜですか? 「メイン」のみをスクロール可能にし、「ヘッダー」と「フッター」を固定位置にしたい。実行する方法?
+-------------------------------------+
| header | -> at fixed position (top of window)
+-------------------------------------+
| main |
| |
| | -> scrollable as its contents
| | scroll bar is window scroll bar not of main
| |
| |
+-------------------------------------+
| footer | -> at fixed position (bottom of window)
+-------------------------------------+
このフィドルを参照してください