calamus
calamus
冬天从这里夺去的,春天会交还与你。

浏览器自带的滚动条样式已经不能满足审美需求了,需要自定义

 

.cl-scrollbar::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.cl-scrollbar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #495060;
}

.cl-scrollbar::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

效果:

 

posted on 2018-04-19 16:50  calamus  阅读(129)  评论(0编辑  收藏  举报