Live2D

css 改变滚动条样式

 

/*滚动条样式start*/
    ::-webkit-scrollbar {
        width: 3px;
        height: 8px;
    }

    ::-webkit-scrollbar-button {
        width: 0;
        height: 0;
    }

    ::-webkit-scrollbar-thumb {
        min-height: 28px;
        padding-top: 100;
        background-color: rgba(0, 0, 0, .1);
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border-radius: 5px;
        -webkit-box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%), inset 0 -1px 0 rgb(0 0 0 / 7%);
    }
    /*滚动条样式end*/

 

posted @ 2022-12-30 17:14  webmtjj  阅读(262)  评论(0)    收藏  举报