css

当前位置:首页 > 前端 > css

CSS更改浏览器默认滚动条样式代码

/* webkit内核浏览器 */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-button { width: 8px; height: 5px; } ::-webkit-scrol...
/* webkit内核浏览器 */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-button {
width: 8px;
height: 5px;
}
::-webkit-scrollbar-track {

border-radius: 0px;
}
::-webkit-scrollbar-thumb {
background: #999;
border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
background: #7d7d7d;
}

/* IE浏览器 */
html {
/*滑块和箭头背景颜色*/
scrollbar-base-color: #7d7d7d;
/*背景边框颜色*/
scrollbar-3dlight-color: #7d7d7d;
/*滑块边框颜色*/
scrollbar-highlight-color: #7d7d7d;
/*背景颜色*/
scrollbar-track-color: #EBEBEB;
/*箭头颜色*/
scrollbar-arrow-color: #EBEBEB;
/*滑块阴影*/
scrollbar-shadow-color: #7d7d7d;
/*背景阴影*/
scrollbar-dark-shadow-color: #EBEBEB;
}


上一篇:CSS 进度条

下一篇:css 文字阴影

相关内容

文章评论

表情

共 0 条评论,查看全部
  • 这篇文章还没有收到评论,赶紧来抢沙发吧~