// 基本的设置 ::-webkit-scrollbar {/*滚动条整体样式*/ width: 10px; /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ border-radius: 10px; background-color: #F90; background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent); } ::-webkit-scrollbar-track {/*滚动条里面轨道*/ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); background: #EDEDED; } ::-webkit-scrollbar-button { height: 0; width: 0; display: none; }
常用示例:https://chaochaoxiaoren.github.io/scrollbar.html
参考:https://developer.mozilla.org/zh-CN/docs/Web/CSS/::-webkit-scrollbar
参考:https://www.xuanfengge.com/css3-webkit-scrollbar.html
参考:https://segmentfault.com/a/1190000012800450