微信小程序 去掉默认的滚动条
2019-01-17 本文已影响22人
加冰宝贝
方案一:
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
方案二:
::-webkit-scrollbar {
display: none;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
::-webkit-scrollbar {
display: none;
}