-莫可可
高彩霞

导航

 
/*定义滚动条样式(高宽及背景)*/
      ::-webkit-scrollbar {
        width: 10px; /* 滚动条宽度, width:对应竖滚动条的宽度  height:对应横滚动条的高度*/
        height: 10px;
        background: rgb(29, 63, 138);
      }
      /*定义滚动条轨道(凹槽)样式*/
      ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* 较少使用 */
        border-radius: 3px;
      }
      /*定义滑块 样式*/
      ::-webkit-scrollbar-thumb {
        // border-radius: 3px;
        // height: 100px;    /* 滚动条滑块长度 */
        background-color: rgba(63, 90, 149, 0.43);
      }
posted on 2021-07-10 16:53  -莫可可  阅读(26)  评论(0编辑  收藏  举报