滚动条样式设置


<style>
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px; /*高宽分别对应横竖滚动条的尺寸*/
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent !important; /* 滚动条轨道背景 */
}

::-webkit-scrollbar-thumb {
  background-color: #edeef2 !important; /* 滚动条颜色 */
  border-radius: 4px !important; /* 滚动条圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6b6d6f !important; /* 悬停时颜色 */
}
</style>

文章作者: 冷杨威
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 冷杨威 !
  目录
-->