如何让滚动条透明? 仅限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,0,0,1);
}
答案 0 :(得分: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);
}
答案 1 :(得分:0)
如果你最终希望跨浏览器,see my question来自上周。
Here's the JSBin继续使用它。