首页 > 代码库 > 自定义滚动条
自定义滚动条
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 }
自定义滚动条
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。