苹果手机滚动条样式无效
作者:互联网
网上查了一些资料,提到的很少,应该是苹果手机 ios系统升级到 13.0版本后
-webkit-overflow-scrolling: touch; 会导致滚动条自定义样式无效 -webkit-overflow-scrolling: auto; 或者不写这个,如果还是无效,添加下面的红色样式部分,添加一处就可以,如果有其他的解决方式欢迎留言告知 下面的写法才可以 ::-webkit-scrollbar{ width: 4px!important; height: 4px!important; background-color: #F5F5F5; border: 4px solid transparent; background-clip: content-box; } ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb:hover, ::-webkit-scrollbar-thumb:active{ background-color: red; border-radius: 2px; border: 4px solid transparent; background-clip: content-box; }标签:thumb,样式,无效,滚动条,scrollbar,background,webkit,border,4px 来源: https://www.cnblogs.com/liuda-page/p/15303690.html