samionyoung
5/4/2018 - 6:55 AM

让页面滚动不发生晃动 avoid shaking when web content loading to scroll

让页面滚动不发生晃动 avoid shaking when web content loading to scroll

html {
    overflow-y: scroll; /* for IE8 */
}

:root {
    overflow-y: auto;
    overflow-x: hidden;
}

:root body {
    position: absolute;
}

body {
    width: 100vw;
    overflow: hidden;
}