Scrollbar track thinner than thumb

后端 未结 9 1425
时光说笑
时光说笑 2021-02-19 10:39

I am trying to style a scrollbar using css and I want to achieve the following look (ignore the background):

In other words, I want the thumb to be thicker than

9条回答
  •  隐瞒了意图╮
    2021-02-19 11:13

    Pure css solution

        .item-container::-webkit-scrollbar {
             background-image: linear-gradient(to right,white 50%, grey 50%,white 51%);
        }
    
        .item-container::-webkit-scrollbar-thumb {
            background-color: grey;
            border-radius: 10px;
        }
    
        .item-container{
          overflow: auto;
          height: 200px;
          width: 200px;
        }
    
        .item-container div{
          height: 100px;
        }
        
    item
    item
    item
    item
    item
    item
    item
    item
    item
    item
    item
    item
    item

提交回复
热议问题