透明滚动条

Тат*_*ёва 5 webkit scrollbar css3

如何使滚动条透明?只有css.仅适用于webkit浏览器.我的代码在这里.

   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,0,0,1);
}  
Run Code Online (Sandbox Code Playgroud)

Jig*_*Raj 3

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,255,1);

}  
Run Code Online (Sandbox Code Playgroud)

  • `rgba(255,255,255,255)` 不是有效代码。它应该是“rgba(255,255,255,1)”。 (9认同)