html5 - 关于在ios微信页面滚动条样式
PHP中文网
PHP中文网 2017-04-17 14:22:40
0
1
776
 ul{
    position: relative;
    width: 100%;
    height: 76px;
    border-top: 1px solid #d7d7d7;
    overflow-x: auto;
}

这段代码会自动出现x轴的滚动条,但是在ios微信页面里面这个滚动条是透明的,我想把这个滚动条的做成一个带颜色的,请问css需要怎么写才行呢?

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(1)
Ty80

Custom scroll bars are only supported by webkit-based browsers. Since the WeChat page is also webkit, it is logically supported. Then you can define the color like this (assuming I want a red scroll bar):

p::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: red;
  border: 0px solid #fff;
}

The effect is as follows:

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!