Phonegap vertical scroll

前端 未结 6 1389
你的背包
你的背包 2021-02-06 15:10

I am building a phonegap app for ios and have vertical scroll issue. There appears to be a few pixels scroll in the webview even without any content and this is affecting my abs

6条回答
  •  星月不相逢
    2021-02-06 16:07

    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow: hidden;
    }
    
    
    

    And in config.xml:

    
    

    Above are settings I found to be the best start for handling scroll on iOS. Then, just add 'overflow: auto' to any element you need to scroll. Use overthrow or iscroll to help support iOS < 5, android < 3, and and so on.

提交回复
热议问题