美文网首页
完整去掉滚动条仍然可以触摸滚动

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

作者: Aurora_9e36 | 来源:发表于2022-01-09 16:27 被阅读0次

    .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); }

    相关文章

      网友评论

          本文标题:完整去掉滚动条仍然可以触摸滚动

          本文链接:https://www.haomeiwen.com/subject/atnmcrtx.html