CSS自定义滚动条样式
Posted 嘻嘻的妙妙屋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS自定义滚动条样式相关的知识,希望对你有一定的参考价值。
自定义滚动条样式
效果
index.css
*::-webkit-scrollbar
width: 12px;
height: 12px;
*::-webkit-scrollbar-button
width: 0px;
height: 0px;
display: none;
*::-webkit-scrollbar-corner
background-color: transparent;
*::-webkit-scrollbar-thumb
border: 4px solid rgba(0, 0, 0, 0);
height: 6px;
border-radius: 25px;
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.30);
以上是关于CSS自定义滚动条样式的主要内容,如果未能解决你的问题,请参考以下文章