去除小程序的滚动条

方案一:

::-webkit-scrollbar {
      0;
     height: 0;
     color: transparent;
}
  • 1
  • 2
  • 3
  • 4
  • 5

方案二:

::-webkit-scrollbar {
     display: none;
}
原文地址:https://www.cnblogs.com/ylblogs/p/9577182.html