CSS customized scroll bar in div

后端 未结 19 1413
夕颜
夕颜 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 11:35

    Here's a webkit example which works for Chrome and Safari:

    CSS:

    ::-webkit-scrollbar 
    {
        width: 40px;
        background-color:#4F4F4F;
    }
    
    ::-webkit-scrollbar-button:vertical:increment 
    {
        height:40px;
        background-image: url(/Images/Scrollbar/decrement.png);
        background-size:39px 30px;
        background-repeat:no-repeat;
    }
    
    ::-webkit-scrollbar-button:vertical:decrement 
    {
        height:40px;
        background-image: url(/Images/Scrollbar/increment.png);    
        background-size:39px 30px;
        background-repeat:no-repeat;
    }
    

    Output:

    enter image description here

提交回复
热议问题