基本上我试图让我的页眉固定在页面的顶部,同时我还需要我的页脚必须在页面的底部,无论内容是少还是多。但我不希望我的页脚位置修复。因此,当有大量数据页脚移动时。如果我不修复标题,我现在使用的代码会很好用。
<body>
<div id="header">header</div>
<div id="content">content</div>
<div id="footer">footer</div>
</body>
为此的CSS是
*{ margin:0px; padding:0px;}
html{
margin:0;
padding:0;
height:100%;
}
body {
min-height:100%;
position:relative;
}
#header {
padding:10px;
background:#5ee;
}
#content {
padding:10px;
padding-bottom:80px; /* Height of the footer element */
}
#footer {
width:100%;
height:80px;
position:absolute;
bottom:0;
left:0;
background:#ee5;
}
这是代码,我还没有修复我的标题,但我需要一些帮助来修复它。