私のページでは、コンテンツ (ページ内の赤い色) をフッター (黄色) まで引き延ばしたいのですが、この 3 日間を修正する方法が見つかりません。私を助けてください..
index.html
<body>
<div id="wrapper">
<div id="header">HEADER</div>
<div id="content">CONTENT</div>
<div id="footer">FOOTER</div>
</div>
</body>
これは私のstyle.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;
}