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

时间:2020-02-13 热度:°C 作者:刘晓春

新建一个样式表进行引用

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;
}

如若转载,请注明出处:《bootstrap4中让footer一直保持在页面的底部》
永久地址: