天天看点

Sticky Footer - 让footer永远置于页面最底端

我们常常需要把footer放置在页面的最低端,那么如果页面的内容高度不够,footer并不会自动置于底端。我们需要进行自定义CSS:

html {
    min-height: %; /* 非常重要 */
    position: relative;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: px;
}

.footer {
    position: absolute;
    bottom: ;
    width: %;
    height: px;
}
           

简单,但却是最完美的解决方案。