滚动条样式

122 阅读1分钟

只对谷歌生效,火狐及其他不生效

    ::-webkit-scrollbar{
        width: 3px;
        height: 8px;
        background-color: #f5f5f5;
    }
    ::-webkit-scrollbar-track{
        -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.3);
        border-radius: 10px;
        background-color: #f5f5f5;
    }

    ::-webkit-scrollbar-thumb{
        height: 20px;
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.3);
        background-color: rgb(60, 168, 96);
    }