我的网站在移动响应式滚动,即使我把正文和html的高度为100vh。
html,
body{
height: 100vh
}
我还计算了chrome #urlbar,但仍然滚动
@supports (-webkit-appearance:none) {
.fixed-view {
height: calc(92vh - 56px);
}
}
我的手机屏幕手机屏幕显示chrome #urlbar
我也遇到过这个问题,set style:
html, body {
height: 100%;
}
这就够了。