欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
  /*定义滚动条样式*/
 
  ::-webkit-scrollbar{
 
  width:6px;
 
  height:6px;
 
  background-color:rgba(240,240,240,1);
 
  }
 
  /*定义滚动条轨道内阴影+圆角*/
 
  ::-webkit-scrollbar-track{
 
  box-shadow:inset000pxrgba(240,240,240,.5);
 
  border-radius:10px;
 
  background-color:rgba(240,240,240,.5);
 
  }
 
  /*定义滑块内阴影+圆角*/
 
  ::-webkit-scrollbar-thumb{
 
  border-radius:10px;
 
  box-shadow:inset000pxrgba(240,240,240,.5);
 
  background-color:rgba(240,240,240,.5);
 
  }

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h56428.shtml