标签:scrollbar sha border http 水平 style class code order
只对webkit内核的浏览器,使用伪类来改变滚动条的默认样式。
::-webkit-scrollbar 滚动条整体部分
::-webkit-scrollbar-thumb 滚动条里面的小方块,能向上向下移动(或向左向右移动)
::-webkit-scrollbar-track 滚动条的轨道(里面装有Thumb)
::-webkit-scrollbar-button 滚动条的轨道的两端按钮
::-webkit-scrollbar-track-piece 内层轨道,滚动条中间部分
::-webkit-scrollbar-corner 边角,即垂直滚动条和水平滚动条的交汇处
::-webkit-resizer 两个滚动条的交汇处上用于拖动调整元素大小的小控件
::-webkit-scrollbar-track {border-radius: 5px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #ffffe0; } ::-webkit-scrollbar { border-radius: 5px; width: 6px; background-color: #ff80bf; } ::-webkit-scrollbar-thumb {border-radius: 5px; background-color: #ffc098; }
标签:scrollbar sha border http 水平 style class code order
原文地址:https://www.cnblogs.com/abnk/p/11371710.html