Transparent scrollbar with css

后端 未结 8 1659
面向向阳花
面向向阳花 2020-12-05 04:15

Now use this code (and many variations of this), but scroll track get dark-grey color, something like #222222 or near this. Find many examples, but all of them give same res

8条回答
  •  被撕碎了的回忆
    2020-12-05 04:56

    Embed this code in your css.

    ::-webkit-scrollbar {
        width: 0px;
    }
    

    /* Track */

    ::-webkit-scrollbar-track {
        -webkit-box-shadow: none;
    }
    

    /* Handle */

    ::-webkit-scrollbar-thumb {
        background: white;
        -webkit-box-shadow: none;
    }
    
    ::-webkit-scrollbar-thumb:window-inactive {
        background: none;
    }
    

提交回复
热议问题