我有一个容器,可以填充所有浏览器高度。要做到这一点,我正在使用vh单位:
section{
background-image: ...;
background-repeat: no-repeat;
background-position: center;
overflow: hidden;
}
section .container{
height: 100vh;
}
问题发生在移动版Firefox中。容器高度大于视口高度。它看起来像Firefox在计算中包含导航栏高度。