美文网首页
修改滚动条

修改滚动条

作者: 从不放弃 | 来源:发表于2020-08-05 11:34 被阅读0次

    //滚动条样式
    ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    }
    ::-webkit-scrollbar-track-piece {
    background-color: transparent; //滚动槽
    -webkit-border-radius: 6px;
    }
    ::-webkit-scrollbar-thumb:vertical {
    height: 12px;
    background-color: #BDBDBD;
    -webkit-border-radius: 6px;
    }
    ::-webkit-scrollbar-thumb:horizontal {
    width: 12px;
    background-color: #BDBDBD;
    -webkit-border-radius: 6px;
    }
    //滚动条鼠标移上去的样式
    ::-webkit-scrollbar-thumb:vertical:hover,::-webkit-scrollbar-thumb:horizontal:hover
    {
    background-color: #808080;
    }

    相关文章

      网友评论

          本文标题:修改滚动条

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