这次给大家带来修改滚动条样式的方法,修改滚动条样式的注意事项有哪些,下面就是实战案例,一起来看一下。
支持360极速 chrome firfox 不支持ie9
/*滚动条样式*/::-webkit-scrollbar {/*滚动条整体样式*/
width: 6px!important;; /*高宽分别对应横竖滚动条的尺寸*/
height: 6px!important;;
background: #ffffff!important;;
cursor: pointer!important;
}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 5px!important;
-webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;;
background: rgba(95,168,255,0.8)!important;;
cursor: pointer!important;
}
::-webkit-scrollbar-track {/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;;
border-radius: 0!important;;
background: rgba(240,240,240,0.5)!important;;
cursor: pointer!important;
}
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
相关阅读:
table tr th 及table tr td 字体太多超出怎样用css解决
让页面动起来的wow.js
怎样设置默认打开360极速模式
以上就是修改滚动条样式的方法的详细内容。