How can I increase a scrollbar's width using CSS?

后端 未结 6 2009
旧时难觅i
旧时难觅i 2020-12-02 22:32

Is it possible to increase the width of a scrollbar on a

element placed inside the ?

I am not talking about the def

6条回答
  •  囚心锁ツ
    2020-12-02 22:59

    You can stablish specific toolbar for div

    div::-webkit-scrollbar {
    width: 12px;
    }
    
    div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    }
    

    see demo in jsfiddle.net

提交回复
热议问题