谷歌浏览器设置滚动条样式
<style>
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
background-color: rgb(59, 182, 225);
transition: all .2s;
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(128, 241, 63, 0.7);
}
</style>
真的好用,先保存起来(暂只尝试的谷歌浏览器)