让footer一直保持在页面的底部

html {
    height: 100%;
}

body {
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
    padding-bottom: 80px; /* .footer 的高度,为 footer 占位 */
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

你可能感兴趣的:(让footer一直保持在页面的底部)