div
下部を下部 0 に配置し、位置を固定する CSS コードがあります。これは完全に機能しますが、ウィンドウのサイズを変更すると、下部div
が上のウィンドウ (中央と上部) を隠します。コードは次のとおりです。
.topFull{
width:100%;
height: 90px;
background:#1b3f61;
position: fixed;
top: 0px;
left: 0px;
}
.middle{
width:100%;
min-width:850px;
max-width:1000px;
height: auto;
margin-top: 120px;
position: absolute;
margin-left: -50px;
}
.bottomFull{
width: 100%;
background:#1b3f61;
height: 180px;
position: fixed;
left: 0;
bottom: 0;
}