美文网首页
写一个好看的滚动条样式

写一个好看的滚动条样式

作者: 470d98b91bd3 | 来源:发表于2019-12-23 11:01 被阅读0次

    直接在页面上引用就好了

    .idt-scrollbar {
      overflow-y: auto;
      box-sizing: border-box;
    
      &::-webkit-scrollbar {
        width: 1px;
        background-color: @blueGrey_100;
      }
    
      &::-webkit-scrollbar-thumb {
        background-color: #0ae;
      }
    
      &::-webkit-scrollbar-track {
        background-color: @blueGrey_100;
      }
    }
    
    .idt-scrollbar-2 {
      overflow-x: auto;
      box-sizing: border-box;
    
      &::-webkit-scrollbar {
        height: 5px;
        background-color: @blueGrey_100;
      }
    
      &::-webkit-scrollbar-thumb {
        background-color: #0ae;
      }
    
      &::-webkit-scrollbar-track {
        background-color: @blueGrey_100;
      }
    }
    
    

    相关文章

      网友评论

          本文标题:写一个好看的滚动条样式

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