css小工具

时间:2023-03-10 06:38:17
css小工具
自定义滚动条
.task-holder::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
.task-holder::-webkit-scrollbar-button {
  height: 0px;
  height: 0px;
  display: block;
}
.task-holder::-webkit-scrollbar-track {
  border-radius: 10px;
}
.task-holder::-webkit-scrollbar-track-piece {
  background: rgba(0, 0, 0, .15);
}
.task-holder::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
} 参考链接:http://linxz.github.io/tianyizone/