美文网首页
浏览器设置样式

浏览器设置样式

作者: 卓小生 | 来源:发表于2018-11-01 09:41 被阅读0次
    div::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }
    
    div::-webkit-scrollbar-button {
        display: none;
    }
    
    div::-webkit-scrollbar-track-piece {
        background-color: #F0F0F0;
    }
    
    div::-webkit-scrollbar-thumb {
        background-color: #81C0C0;
        border-radius: 5px;
    }
    
    div::-webkit-scrollbar-thumb:hover {
        background-color: #A3D1D1;
    }
    
    

    相关文章

      网友评论

          本文标题:浏览器设置样式

          本文链接:https://www.haomeiwen.com/subject/prytxqtx.html