好的,让我解释一下我要做的事情:
我们以此为例:
这怎么可行?
答案 0 :(得分:2)
我一直使用http://ryanfait.com/resources/footer-stick-to-bottom-of-page/的解决方案。
<强> CSS:强>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
<强> HTML:强>
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>
答案 1 :(得分:-2)
如果你将css添加到页脚#footer {
position:absolute;
bottom:0px;
}
页脚将位于页面底部