Transparent scrollbar with css

后端 未结 8 1660
面向向阳花
面向向阳花 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 05:06

    With pure css it is not possible to make it transparent. You have to use transparent background image like this:

    ::-webkit-scrollbar-track-piece:start {
        background: transparent url('images/backgrounds/scrollbar.png') repeat-y !important;
    }
    
    ::-webkit-scrollbar-track-piece:end {
        background: transparent url('images/backgrounds/scrollbar.png') repeat-y !important;
    }
    

提交回复
热议问题