右侧上下 滑块

右侧上下滑动 [要有父子两个标签,把下面的代码放在子标签样式里面]

  // 上下滑块
  &::-webkit-scrollbar {
    width: 15px;
  }
  &::-webkit-scrollbar-track {
    border-radius: 7.5px;
    background-color: rgba(2, 2, 29, 0.4);
    -webkit-box-shadow: inset 0 0 3px #fff;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background-color: rgba(104, 47, 236, 0.8);
    -webkit-box-shadow: inset 0 0 3px #fff;
  }
  overflow-y: auto; //上下滑动

overflow-y:auto; //上下滑动
overflow-x:auto; //左右滑动

posted @ 2019-06-04 21:59  193557749  阅读(209)  评论(0)    收藏  举报