How do I get scrollbars to show in Mobile Safari?

前端 未结 7 1378
长情又很酷
长情又很酷 2020-12-05 10:46

The jQuery time-picker plugin that I wrote uses a div as the containing block for the list of times, and on Mobile Safari there are no scrollbars to indicate that there are

7条回答
  •  無奈伤痛
    2020-12-05 11:47

    If you want to have the scroll to be always visible,

    Do not set -webkit-overflow-scrolling: touch

    then set custom style for scrollbar

    ::-webkit-scrollbar {
        -webkit-appearance: none;// you need to tweak this to make it available..
        width: 8px;
    }
    

    You loss the momentum effect, but scrollbar will always be there.

    (tested under iPhone 4/ iOS 7)

提交回复
热议问题