当我使用没有内容的相对位置时,页脚上升,绝对有很多内容,页脚下降,并且固定它总是在那里。
有没有一种简单的方法可以在页面末尾独立于内容,随内容缩小和增长?
当内容很多时,我们可以在第一页看到页脚,当内容很少时,我们会在底部看到。
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html,body {
padding: 0;
margin: 0;
}
header {
position:fixed;
top:0;
width:100%;
height:40px;
background-color:#333;
padding:20px;
}
footer {
background-color: #333;
width: 100%;
bottom: 0;
position: relative;
}
#main{
padding-top:100px;
text-align:center;
}
</style>
</head>
<body>
<header>
header
</header>
<div id="main">
main
</div>
<footer>
footer
</footer>
</body>
</html>