scrollable div is not working in android emulator,

2019-02-28 07:18发布

I am using phonegap.
I want to keep a fixed header and footer,and i want to scroll the content in between them. For that i used div with:

div
{
    width: 249px;
    height: 299px;

    background-color:Gray;
    overflow-y: auto;
} 

style.
But the div is not scrolling.
But in browser it is fine.

2条回答
混吃等死
2楼-- · 2019-02-28 07:33

Div scrolling does work in iOS if this property is added:

-webkit-overflow-scrolling: touch

查看更多
看我几分像从前
3楼-- · 2019-02-28 07:51

iOS doesn't allow scrolling within an element (div with overflow:scroll/auto or frames) so you can either design your site around that (usually for the best) or you can try iScroll, which is a javascript plugin designed to re-instate this ability:

http://cubiq.org/iscroll-4

Good luck.

查看更多
登录 后发表回答