浏览器滚动条美化

滚动条美化
demo 地址:https://demo.crazyming.com/?link=scrollbar/beautiful.html
<style>
/*滚动条 宽度*/
::-webkit-scrollbar {
width: 5px;
}
/*滚动条背景*/
::-webkit-scrollbar-track {
background-color: yellow;
}
/*滚动条实体*/
::-webkit-scrollbar-thumb {
background: linear-gradient(#0c5460, #329a91);
border-radius: 10px;
}
</style>

共有 0 条评论