滚动条样式css

深藏阁楼爱情的钟 2021-12-18 13:37 572阅读 0赞

在这里插入图片描述

  1. /** 滚动条 **/
  2. ::-webkit-scrollbar {
  3. width: 6px;
  4. height: 8px;
  5. }
  6. ::-webkit-scrollbar-button:vertical {
  7. display: none;
  8. }
  9. ::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
  10. background-color: #e2e2e2;
  11. }
  12. ::-webkit-scrollbar-thumb {
  13. border-radius: 10px;
  14. background-color: rgba(0, 0, 0, .3);
  15. }
  16. ::-webkit-scrollbar-thumb:vertical:hover {
  17. background-color: rgba(0, 0, 0, .35);
  18. }
  19. ::-webkit-scrollbar-thumb:vertical:active {
  20. background-color: rgba(0, 0, 0, .38);
  21. }

发表评论

表情:
评论列表 (有 0 条评论,572人围观)

还没有评论,来说两句吧...

相关阅读