5

如何使滚动条透明?只有 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);
}  
4

2 回答 2

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

}  
于 2013-10-26T05:27:57.527 回答
0

如果您最终想要跨浏览器,请参阅我上周的问题。

这是与之配套的 JSBin 。

于 2013-10-26T05:30:07.503 回答