::-webkit-scrollbar {
width: 0px;
height: 0px;
background-color: rgba(74, 97, 204, 1);
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
box-shadow: inset 0 0 0px rgba(0, 64, 125, .3);
border-radius: 10px;
background-color: rgba(74, 97, 204, 1);
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 0px rgba(0, 64, 125, .3);
background-color: rgba(0, 64, 125, .3);
}
网友评论