CSS新属性 - 更改滚动条样式

    html::-webkit-scrollbar{
        width:10px;
        /* height:1px; 针对横向滚动条*/
    }
    /*定义滚动条的样式*/
    html::-webkit-scrollbar-thumb{
        background: #f90;
        border-radius: 15px;
    }
    /*定义滚动条其它区域的样式*/
    html::-webkit-scrollbar-track{
        background:#dedede;
        box-shadow: inset 0 0 5px gary;
    }

  

posted @ 2021-01-05 22:21  玖先生  阅读(91)  评论(0)    收藏  举报