css scroll 滚动条样式

2019-03-07  本文已影响0人  一沭丶
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: rgba(74, 97, 204, 1);
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(0, 64, 125, .3);
  border-radius: 10px;
  background-color: rgba(74, 97, 204, 1);
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 0px rgba(0, 64, 125, .3);
  background-color: rgba(0, 64, 125, .3);
}
上一篇下一篇

猜你喜欢

热点阅读