当前位置:Gxlcms > css > 修改滚动条样式的方法

修改滚动条样式的方法

时间:2021-07-01 10:21:17 帮助过:54人阅读

这次给大家带来修改滚动条样式的方法,修改滚动条样式的注意事项有哪些,下面就是实战案例,一起来看一下。

支持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;
}

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

相关阅读:

table tr th 及table tr td 字体太多超出怎样用CSS解决

让页面动起来的WOW.js

怎样设置默认打开360极速模式

以上就是修改滚动条样式的方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行