我有两页包含页脚的 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;
}