美文网首页
页面滚动条样式设置

页面滚动条样式设置

作者: 洪锦一 | 来源:发表于2022-11-18 09:27 被阅读0次

    一、全局滚动条样式设置:

    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
     
    ::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background-color: #99a9bf;
    }
     
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 5px;
        background-color: #d3dce6;
    }
    

    二、单独滚动条样式设置

    .container {
        max-height: 100vh;
        overflow-y: scroll;
     
    &::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
     
    &::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background-color: #99a9bf;
    }
     
    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 5px;
        background-color: #d3dce6;
    }
     
    }
    

    在页面style处加上以上代码,后面可以根据项目的需求自行调整。

    相关文章

      网友评论

          本文标题:页面滚动条样式设置

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