You need to install bodyand htmlelements << 22>
Try something like this:
<html style="height: 100%">
<body style="height: 100%">
<div style="width:100%; height:100%; background-color:transparent;">
<iframe src="http://www.google.com/" width="100%" height="100%" frameborder="0" scrolling="no"></iframe>
</div>
</body>
</html>
Better yet, add these rules to your CSS file as such:
body, html { height: 100%; }
You can also try the following:
CSS
html, body { height: 100%; }
iframe { width: 100%; height: 100%; }
HTML:
<html>
<body>
<iframe src="http://www.google.com" frameborder="0" scrolling="no"></iframe>
</body>
</html>
An alternative that moves frame borders and scrolls to CSS
border: none;removes the border in the iframe, but overflow: hidden;disables scrolling and hides any content that cuts the page (for example, your source code).
CSS
html, body { height: 100%; overflow: hidden; }
iframe { width: 100%; height: 100%; border: none; overflow: hidden; }
HTML:
<html>
<body>
<iframe src="http://en.wikipedia.org"></iframe>
</body>
</html>
source
share