浏览器滚动条样式怎么修改
{
scrollbar-arrow-color: red;
scrollbar-face-color: #CBCBCB;
scrollbar-3dlight-color: blue;
scrollbar-highlight-color: #333;
scrollbar-shadow-color: yellow;
scrollbar-darkshadow-color: green;
scrollbar-track-color: #eee;
scrollbar-base-color: black;
Cursor:url(mouse.cur);
}
::-webkit-scrollbar {
width:10px;
margin-right:2px
}
::-webkit-scrollbar-button {
width:10px;
background-color: yellow;
}
::-webkit-scrollbar:horizontal {
height:10px;
margin-bottom:2px
}
::-webkit-scrollbar-track {
border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
background-color: #333333;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
width:10px;
border-radius: 5px;
background: #CBCBCB;
}
::-webkit-scrollbar-corner {
width: 10px;
background-color: red;
}
::-webkit-scrollbar-thumb:hover {
background: #909090;
}
.demo {
width: 400px;
height: 200px;
overflow: auto;
}
本文标题:浏览器滚动条样式怎么修改
本文链接:https://www.qqooo.cn/post/6961.html
版权说明:网站文章均来源于手工整理和网友投稿,若有不妥之处请来信 xsds@vip.qq.com 处理,谢谢!