css

【CSS】滚动条样式

Chason
2021-01-22 / 0 评论 / 0 点赞 / 1,010 阅读 / 50 字
温馨提示:
本文最后更新于 2022-06-24,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。
/* 滚动条 */
* ::-webkit-scrollbar-track-piece {
  background-color: #09114c;
}
* ::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
* ::-webkit-scrollbar-thumb {
  border-radius: 20px !important;
  background-color: #2239e4;
  background-clip: padding-box;
  min-height: 10px;
}
* ::-webkit-scrollbar-thumb:hover {
  background-color: #2239e4;
}
/* 滚动条不可见 */
* ::-webkit-scrollbar {
  width: 0px;
}
0

评论区