AlG*_*laf 8 html css sticky-footer responsive-design twitter-bootstrap
调整窗口大小时,页脚的高度会扩大,但背景颜色不会扩大.救命!
http://twitter.github.io/bootstrap/examples/sticky-footer.html
height: auto
似乎解决了这个问题.您可以将其包含在小视口的媒体查询中:
@media only screen and (max-device-width: 480px) {
#footer {
height: auto;
}
}
Run Code Online (Sandbox Code Playgroud)