我通常熟悉使用CSS刷新页脚的技术。
但是我很难在Twitter引导程序中使用这种方法,这很可能是由于Twitter引导程序本质上是响应式的。使用Twitter引导程序,我无法使用上述博客文章中描述的方法使页脚刷新至页面底部。
发现这里的代码片段非常适合引导
HTML:
<div id="wrap"> <div id="main" class="container clear-top"> <p>Your content here</p> </div> </div> <footer class="footer"></footer>
CSS:
html, body { height: 100%; } #wrap { min-height: 100%; } #main { overflow:auto; padding-bottom:150px; /* this needs to be bigger than footer height*/ } .footer { position: relative; margin-top: -150px; /* negative value of footer height */ height: 150px; clear:both; padding-top:20px; }