在我的页面中,我希望内容(页面中的红色)延伸到页脚(黄色)......我找不到任何方法来解决过去 3 天的问题。请帮我..
index.html
<body>
<div id="wrapper">
<div id="header">HEADER</div>
<div id="content">CONTENT</div>
<div id="footer">FOOTER</div>
</div>
</body>
这是我的风格.css
html,
body {
margin:0;
padding:0;
height:100%;
background-color: blue;
}
#wrapper {
min-height:100%;
position:relative;
}
#header {
padding:10px;
background:#5ee;
}
#content {
padding:10px;
padding-bottom:80px;
background-color: red;
width: 1000px;
margin: 0 auto;
}
#footer {
width:100%;
height:80px;
position:absolute;
bottom:0;
left:0;
background:#ee5;
}