I\'m working on a mobile website which has \"pages\" that have div\'s which take up the screens full size and you can scroll between each one. The problem is, the window resizes
The simplest way to achieve this is to scroll in a container, rather than scrolling the document.
E.g.:
... all your content here ... html, body { height: 100%; } #scrollable-content { height: 100%; overflow-y: scroll; }