在Firefox中,页脚不会停留在底部。

问题描述 投票:-3回答:1

所以我用下面的代码把我的页脚放在页面的底部。

这是一个vue项目,所以#app是我的容器,里面有我的内容和页脚。

#app {
  min-height: 100%;
  position: relative;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5rem;
}

这在Chrome浏览器中效果很好,但不知为何Firefox并不关心,只是让我的页脚浮在内容下面。

我在这里错过了什么吗?

css vue.js firefox position
1个回答
0
投票

我想你应该把位置改为position: fixed。

© www.soinside.com 2019 - 2024. All rights reserved.