css修改滚动条样式

把这样:

修改成这样:css修改滚动条样式_第1张图片 颜色可自定义

/* 整个滚动条 */
::-webkit-scrollbar {
  /* 对应纵向滚动条的宽度 */
  width: 10px;
  /* 对应横向滚动条的宽度 */
  height: 10px;
}

/* 滚动条上的滚动滑块 */
::-webkit-scrollbar-thumb {
  background-color: @theme;
  border-radius: 32px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background-color: @shallowTheme;
  border-radius: 32px;
}

你可能感兴趣的:(css,css,css3,html)