html 改变滚动条样式


/*首先在DIV里将溢出部分设置为auto*/

div{

overflow: auto;

}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar
{
width: 10px;
height: 10px;
background-color: #023F5B;
}

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

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

posted @ 2020-12-09 14:39  银翼杀手  阅读(309)  评论(0)    收藏  举报