I have developed an HTML5 application for mobile devices. Currently, I have managed to address width-height issues by using a simple scroll feature when necessary. However, I have encountered a challenge with a particular page that contains a lot of content positioned absolutely. My goal is to display all the content within one screen without requiring users to scroll.
While the page looks fine on the Samsung Galaxy, it does not fully display on the iPhone.
I attempted to resolve this by adjusting the viewport:
<meta name="viewport" id="viewport" content="width=device-width,height=device-height,initial-scale=1.0,user-scalable=no,minimum-scale=1.0, maximum-scale=1.0" />
However, this did not solve the issue.
Can someone advise me on how to encapsulate a large div with content in a way that ensures it will display correctly across different screen resolutions?