css3 改变滚动条样式

.detail-box ::-webkit-scrollbar
{
border-radius: 10px;
width: 7px;
height: 30px;
background-color: #59b0c8;
}

/*定义滚动条轨道 内阴影+圆角*/
.detail-box ::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #2d2d2d;
}

/*定义滑块 内阴影+圆角*/
.detail-box ::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #59b0c8;;
}

猜你喜欢

转载自www.cnblogs.com/guohuiru/p/css3.html