我知道有 1001 个 CSS 页脚 hacks 需要多次扭曲才能满足最古老的浏览器。
但我想知道如何为现代标准兼容浏览器制作页脚。我希望下面的代码可以工作,但它没有——页脚不在页面底部,而是在“内容”的正下方。为什么?
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Footer Test</title>
<style type="text/css">
html
{
height: 100%;
margin: 0;
padding: 0;
}
body
{
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
#page
{
position: relative; /* <--- relative position for footer's parent */
height: 100%;
background-color: #AAA;
}
#header
{
height: 3em;
margin: 0;
padding: 1em;
background-color: #F00;
}
#content
{
margin: 0;
padding: 1em;
background-color: #0F0;
}
#footer
{
position: relative;
bottom: 0; /* <--- distance from #footer's bottom to #page's bottom */
height: 3em;
margin: 0;
padding: 1em;
background-color: #00F;
}
</style>
</head>
<body>
<div id="page">
<div id="header">
<p>This is the header!</p>
</div>
<div id="content">
<p>Yeah, some content!</p>
<p>Yeah, some content!</p>
<p>Yeah, some content!</p>
</div>
<div id="footer">
<p>This is the footer!</p>
</div>
</div>
</body>
</html>
编辑:
澄清:我希望页脚位于viewport的底部。因此,如果内容很少,则内容下方应留有空隙,页脚应位于页面底部。但是如果有很多内容滚动条应该出现,并且页脚应该只有在向下滚动时才可见。