不兼容IE
 
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
  width: 8px;
  height:8px;
}
 
/*定义滚动条轨道 圆角*/
::-webkit-scrollbar-track
{
  border-radius: 10px;
  background-color: #efefef;
}
/*定义滑块 圆角*/
::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: #ccc;
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2021-05-16
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-04
  • 2021-06-09
  • 2022-12-23
  • 2021-10-07
  • 2021-12-04
  • 2021-10-01
相关资源
相似解决方案