答案 0 :(得分:2)
我建议使用Ryan Fait's sticky footer。它可以完成你想用纯CSS做的事情。
HTML:
<div class="wrapper">
Content Here
<div class="push"></div>
</div>
<div class="footer"></div>
CSS:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
.footer { /* centers the text */
text-align: center; /* horizontal centering */
line-height: 142px; /* vertical centering; should be equal to the footer height */
}
答案 1 :(得分:1)
尝试更改页脚元素和前面的hr元素,如下所示:
<footer style="position:fixed; left:0px; right:0px; bottom:0px;
background:rgb(255,255,255); text-align:center;">
<hr>
<p>© Company 2012</p>
</footer>
我认为这或多或少解决了你的问题。它与http://ryanfait.com/sticky-footer/的页脚完全不同,但就我理解你的问题而言,这就是你想要的。
PS:CSS当然应该放在CSS文件中。