完整去掉滚动条仍然可以触摸滚动

.level2text {
display: flex;
width: 555rpx;
overflow-x: auto; //去掉滚动条
//overflow-x 横向 overflow-y 纵向
margin-left: 10rpx;
}
//全部加上
.level2text::-webkit-scrollbar{ width: 0px; height: 0px; }
.level2text::-webkit-scrollbar-corner{ background-color: #3C3C3C; }
.level2text::-webkit-scrollbar-track{ width: 0px; height: 0px; background-color: #3C3C3C; }
.level2text::-webkit-scrollbar-thumb{ width: 0px; height: 0px; background-color: rgba(255,255,255,0.25); }
.level2text::-webkit-scrollbar-thumb:hover{ background-color: rgba(255,255,255,0.4); }

你可能感兴趣的:(完整去掉滚动条仍然可以触摸滚动)