我想制作透明的滚动条,应该放在带有内容的 div 上。只有 css 和只有 webkit 浏览器。它必须看起来像example。我的代码。问题是滚动条将内容向左移动。如何使它看起来像示例?感谢您的回复。
div{
width:410px;
height:100px;
overflow-y:scroll;
border:1px solid green;
position:relative;
}
::-webkit-scrollbar{
width:20px;
position:absolute;
right:20px;
z-index:100;
}
::-webkit-scrollbar-thumb{
background-color:rgba(0,0,0,1);
border-right:10px solid white;
}