參考:https://cloud.tencent.com/developer/article/1449864
我的需求,電腦端微信瀏覽器不顯示滾動條。
css:
div::-webkit-scrollbar { //chrome 和Safari,電腦端微信瀏覽器
width: 0 !important;
height: 0 !important; //這樣在電腦端微信瀏覽器橫向滾動會無效。不加!important則可
}
div{
-ms-overflow-style: none; //IE 10+
overflow: -moz-scrollbars-none; //Firefox
}
經實踐,谷歌瀏覽器、微信開發工具、移動端以及電腦端微信瀏覽器均有效。
