修改全局滚动条得样式

 1 /* Rolling groove */
 2 ::-webkit-scrollbar {
 3   width: 6px;
 4   height: 6px;
 5 }
 6 ::-webkit-scrollbar-track {
 7   border-radius: 3px;
 8   background: rgba(0,0,0,0.06);
 9   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.08);
10 }
11 /* Scroll bar slider */
12 ::-webkit-scrollbar-thumb {
13   border-radius: 3px;
14   background:#20afec;
15   -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
16 }

 

posted @ 2021-09-08 16:04  白小江  阅读(65)  评论(0编辑  收藏  举报