自定义滚动条样式
/*滚动条整体部分*/ ::-webkit-scrollbar { width: 6px; height: 6px; } /*滚动条的轨道*/ ::-webkit-scrollbar-track { background: #f9fafb; } /*滚动条里面的小方块,能向上向下移动*/ ::-webkit-scrollbar-thumb { border-radius: 5px; background: #d3d4d5; } ::-webkit-scrollbar-thumb:hover { background-color: #a8a8a8; }
::-webkit-scrollbar-thumb:active { background-color: #787878; } /*边角,即两个滚动条的交汇处*/ ::-webkit-scrollbar-corner { background-color: #ffffff; }