CSS 自定义滚动条
创建于:2025-07-26 15:06:11
|
更新于:2025-11-12 15:59:45
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
 
::-webkit-scrollbar-track {
  background: transparent;
}
 
::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px;
  border: none;
}
 
::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}
 
::-webkit-scrollbar:hover ::-webkit-scrollbar-thumb {
  background-color: #888;
}
 
/* For better scrollbar behavior on hover */
* {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
 
*:hover {
  scrollbar-color: #888 transparent;
}
我也是有底线的 🫠