hide page scrollbar

html,body{
    width: 100%;
    height: 100%;
    overflow-x:hidden; 
    overflow-y:hidden;
    overflow-y: scroll;
}

::-webkit-scrollbar{ 
    display: none;
}

Writing on the global style can make all scroll bars disappear and make the page look better

before fixing

 after modification

 

Guess you like

Origin blog.csdn.net/weixin_70563937/article/details/130358169