フッターを含む 2 ページの html があります。両方のページでフッターをページの下部に貼り付けたい。ページに垂直スクロールがない場合は正常に機能しますが、コンテンツが多く、ページにスクロールフッターがコンテンツの上にある場合。これが私のページレイアウトです:
<body>
<div id="container">
<div id="header"> Header </div>
<div id="menu"> Menu </div>
<div id="content"> Content </div>
<div id="footer"> Footer </div>
</div>
</body>
ここに私のcssがあります:
html, body
{
width:100%;
margin:0;
}
#header, #menu, #content, #footer
{
border:thin solid #000;
}
#content
{
width:70%;
margin: 0 auto;
height:100%;
}
#footer
{
position:absolute;
bottom:0;
width:100%;
background-color:#06F;
}