码迷,mamicode.com
首页 > 其他好文 > 详细

自定义滚动条

时间:2017-04-13 10:59:46      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:滚动条   div   pre   rgb   span   order   scroll   自定义滚动条   style   

 1 //自定义滚动条
 2 ::-webkit-scrollbar-corner {
 3   background-color: transparent;
 4 }
 5 
 6 ::-webkit-scrollbar-button {
 7   width: 0;
 8   height: 0;
 9   display: none;
10 }
11 
12 ::-webkit-scrollbar-thumb {
13   width: 2px;
14   background-color: rgba(0,0,0,.2);
15   border-radius: 2px;
16 }
17 
18 ::-webkit-scrollbar {
19   width: 2px;
20   height: 2px;
21 }
22 
23 ::-webkit-scrollbar-track {
24   width: 5px;
25 }
26 
27 ::-webkit-scrollbar:hover {
28   background-color: transparent;
29 }

 

自定义滚动条

标签:滚动条   div   pre   rgb   span   order   scroll   自定义滚动条   style   

原文地址:http://www.cnblogs.com/jkr666666/p/6702786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!