chrome #urlbar hide 时如何避免向下滚动

how to avoid scroll down when chrome #urlbar hide

即使我将 body 和 html 高度设置为 100vh,我的网站仍处于移动响应滚动状态。

html,
body{
     height: 100vh
}

我也计算了chrome #urlbar 但还是滚动

@supports (-webkit-appearance:none) {
    .fixed-view {
        height: calc(92vh - 56px);
    }
}

my mobile screen mobile screen in show of chrome #urlbar

我也有这个问题,设置样式:

html, body {
height: 100%;
}

够了。