更改原生滚动条

146 阅读1分钟

在全局css中添加

//滚动条的宽度
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}
//滚动条的滑块
::-webkit-scrollbar-thumb {
  background-color: #e2e5fc;
  border-radius: 3px;
}