首页 > 解决方案 > 使页脚粘在页面底部的清洁方法?

问题描述

我试图让我的页脚贴在网站底部,当页面高度小于视口高度并且视口高度小于时,我还没有看到让页脚贴在底部的好答案页面高度。

标签: htmlcssfooter

解决方案


如果你想要一个粘性页脚,你可以使用position: fixed;. 例如;

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

推荐阅读