css3 – 透明滚动条

前端之家收集整理的这篇文章主要介绍了css3 – 透明滚动条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使滚动条透明?只有css.仅适用于webkit浏览器.
我的 code在这里.
div{
  width:410px;
  height:100px;
  overflow-y:overlay;
  border:1px solid green;
  position:relative;
}

::-webkit-scrollbar{
  width:20px;
} 

::-webkit-scrollbar-thumb{
  background-color:rgba(0,1);
}

解决方法

div
{
  width:410px;
  height:100px;
  overflow-y:overlay;
  border:1px solid green;
  position:relative;
}

::-webkit-scrollbar{
  width:20px;
} 

::-webkit-scrollbar-thumb{
   background-color: rgba(255,255,1);

}

猜你在找的CSS相关文章