滚动条样式

/* // 滚动条样式 */
.box {
  max-height: 100%;
  overflow-y: auto;
}
.box::-webkit-scrollbar-track-piece {
  /* //滚动条凹槽的颜色,还可以设置边框属性 */
  background-color: #f8f8f8;
}
.box::-webkit-scrollbar {
  /* //滚动条的宽度 */
  width: 3px;
}
.box::-webkit-scrollbar-thumb {
  /* //滚动条的设置 */
  border-radius: 8px;
  background-color: #ccc;
  background-clip: padding-box;
}
.box::-webkit-scrollbar-thumb:hover {
  background-color: #606266;
}
posted @ 2021-03-03 16:20  Smile浅笑  阅读(35)  评论(0编辑  收藏  举报