我想使用 css 更改我的滚动条设计。我使用这个 css,但它只适用于 chrome,
<style>
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
</style>
告诉我如何使用 css 在 Firefox 中更改我的滚动条。
提前致谢