滚动条样式修改

记录一下修改滚动条需要修改的样式:

    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
      background-color: #dee1e6;
    }

    /*定义滚动条轨道 */
    ::-webkit-scrollbar-track {
      border-radius: 4px;
      background-color: #dee1e6;
    }

    /*定义滑块 内阴影+圆角*/
    ::-webkit-scrollbar-thumb {
      border-radius: 5px;
      background-color: rgb(190, 186, 186);
    }

 

posted @ 2019-07-10 16:41  牛牛的天空  阅读(504)  评论(0编辑  收藏  举报