我希望我的卷轴具有透明背景,因为卷轴是一个轻微的白色短划线,顶部有向上箭头和向下箭头......这就是我现在定制的方式.它给了我一个灰色的长卷轴...但我不知道要编辑什么来改变它?
::-webkit-scrollbar {
width: 10px;
height: 6px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
height: 30px;
display: block;
background-color: transparent;
}
::-webkit-scrollbar-track-piece {
background-color: transparent;
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #666;
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: #666;
-webkit-border-radius: 3px;
}
Run Code Online (Sandbox Code Playgroud)