There may be an overflow because you are not setting the viewport for mobile devices.
Try adding:
<meta name="viewport" content="width=device-width,
maximum-scale=1.0" />
for your HTML header to be sure. Which should set the page width to the width of the iPad and make sure that scaling does not occur.
source
share