CSS customized scroll bar in div

后端 未结 19 1412
夕颜
夕颜 2020-11-21 11:05

How can I customize a scroll bar via CSS (Cascading Style Sheets) for one div and not the whole page?

19条回答
  •  时光说笑
    2020-11-21 12:01

    .className::-webkit-scrollbar {
      width: 10px;
      background-color: rgba(0,0,0,0);
    }
    
    .className::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.5);
      border-radius: 5px;
    }
    

    gave me a nice mobile/osx like one.

提交回复
热议问题