CSS 修改浏览器默认的滚动条样式
::-webkit-scrollbar
{
width: 10px;
}
/* 垂直滚动条的滑动块 */
::-webkit-scrollbar-thumb:vertical {
border-radius: 4px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color:#717270;
}
::-webkit-scrollbar-track {
border: 1px #d3d3d3 solid;
box-shadow: 0px 0px 3px #dfdfdf inset;
border-radius: 10px;
background: #eee;
}
::-webkit-scrollbar-thumb {
border: 1px #808080 solid;
border-radius: 10px;
background: #999;
}
::-webkit-scrollbar-thumb:hover {
background: red;
}
本文标题:CSS 修改浏览器默认的滚动条样式
本文链接:https://www.haomeiwen.com/subject/euxylxtx.html
网友评论