🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 默认滚动条修改 ***** ``` /* 设置滚动条的样式 开始 */ ::-webkit-scrollbar {     width: 8px;   }   /* 滚动槽 */   ::-webkit-scrollbar-track {     background-color: rgba(0, 0, 0, 0.1);     //   border-radius: 8px;   }   /* 滚动条滑块 */   ::-webkit-scrollbar-thumb {     border-radius: 8px;     background-color: rgba(0, 0, 0, 0.2);     &:hover {       background-color: rgba(0, 0, 0, 0.3);     }   }   ::-webkit-scrollbar-thumb:window-inactive {     border-radius: 8px;     background-color: rgba(0, 0, 0, 0.2);   }   /* 设置滚动条的样式 结束 */ ``` 参考:https://segmentfault.com/a/1190000003708894