我下邊的設置可以在手機上固定看到scrollbar,但在iphone上就是不顯示出來,請問在CSS上要設置什麼才可以在iphone上都能看到???
<div class="CustomScrollbar">
內容
</div>
.CustomScrollbar {
overflow: scroll;
height: 200px;
border-width: 1px;
border-style: solid;
overflow-x: hidden;
-webkit-overflow-scrolling: touch
}
::-webkit-scrollbar-track {
border-radius: 0.125rem;
background-color: lightgray;
}
::-webkit-scrollbar {
width: 0.25rem;
border-radius: 0.125rem;
}
::-webkit-scrollbar-thumb {
border-radius: 0.125rem;
background-color: gray;
}