移动端移除默认滚动条
2022-07-29 本文已影响0人
王果果
html,body{
height: 100%;
}
::-webkit-scrollbar{
width: 0;
}
body,#app{
width:100%;
overflow-x: hidden;
}
#app{
height: 100%;
padding-bottom: 60px;
box-sizing: border-box;
}
html,body{
height: 100%;
}
::-webkit-scrollbar{
width: 0;
}
body,#app{
width:100%;
overflow-x: hidden;
}
#app{
height: 100%;
padding-bottom: 60px;
box-sizing: border-box;
}