css3美化滚动条

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 3px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
/* // background-color: rgba(7, 170, 247, 0.7); */
background-color: #eee;
}
::-webkit-scrollbar-thumb:hover {
border-radius: 3px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #aaa;
}
/* // 滚动条 end */

猜你喜欢

转载自blog.csdn.net/Generon/article/details/79043058