Skip to content Skip to sidebar Skip to footer

Iframe Size On Ipad

I have an HTML file as follows;

Solution 1:

Starting in version 4.2.1 of Safari iOS, and still going as of 4.3.3, the entire content of an iFrame is forcibly shown. If your iFrame's content is in the same security sandbox as the outer page, you can surround the iframe with a div tag and use that to do the scrolling.

This fiddle doesn't work because of security sandbox restrictions, but it should work find for you if both pages have the same domain: iPad iFrame single finger scrolling

Solution 2:

Just put scrolling="no" in the iframe-tag. Notice that you still need to do something about the scrolling, as @CobaltBlue said.

Post a Comment for "Iframe Size On Ipad"