码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器滚动条样式更改

时间:2018-03-08 22:59:59      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:pos   rac   track   ie浏览器   html   htm   样式   更改   log   

/* webkit内核浏览器 */

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-button {
width: 8px;
height: 5px;
}

::-webkit-scrollbar-track {
background-color: #ddd;
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;
}

浏览器滚动条样式更改

标签:pos   rac   track   ie浏览器   html   htm   样式   更改   log   

原文地址:https://www.cnblogs.com/Zmmy/p/8531120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!