//高宽分别对应横竖滚动条的尺寸
::-webkit-scrollbar {
?width: 16px;
?height: 16px;
?
}
//内阴影 和 圆角
::-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, .3);
?
}
css3 编写滚动条 利用伪类
原文地址:https://www.cnblogs.com/king94Boy/p/9822450.html