Transparent scrollbar

2019-06-23 02:03发布

问题:

How to make scrollbar transparent? Only css. Only for webkit browsers. My code here.

   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);
}  

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

}  


回答2:

If you end up wanting it cross-browser, see my question from last week.

Here's the JSBin to go with it.