移动端页面隐藏滚动条
时间:2020-11-17 15:57:09
收藏:0
阅读:78
h5解决移动端滚动条问题:
html,body{ width: 100%; height: 100%; overflow: scroll;}
html::-webkit-scrollbar, body::-webkit-scrollbar{width:0px;height:0px;}
body{margin:0;}
原文:https://www.cnblogs.com/buildnewhomeland/p/13993555.html
评论(0)