網上查了一些資料,提到的很少,應該是蘋果手機 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;
}
