CSS 修改滚动条样式

谷歌浏览器

::-webkit-scrollbar {
   7px;
  height: 7px;
  cursor: pointer;
}
::-webkit-scrollbar-thumb {
  background-color: #c0c9d1;
  border-radius: 5px;
  cursor: pointer;
}
::-webkit-scrollbar-track {
  background-color: #fff;
  cursor: pointer;
}

火狐浏览器

* {
  scrollbar-color: #c0c9d1 #f7f7f9;  //顶层颜色 底层颜色
  scrollbar- thin; 
}
原文地址:https://www.cnblogs.com/xuchao-blogs/p/14758952.html