Skip to content

Instantly share code, notes, and snippets.

@shahzaibkhan
Created July 6, 2017 10:35
Show Gist options
  • Save shahzaibkhan/021057ce768d20bac1474aacce1c6396 to your computer and use it in GitHub Desktop.
Save shahzaibkhan/021057ce768d20bac1474aacce1c6396 to your computer and use it in GitHub Desktop.
Full Page Iframe
<!doctype html>
<html class="iframe" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>TITLE</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style type="text/css">
html {overflow: auto;}
html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
</style>
</head>
<body style="margin: 0; border: 0; padding: 0;">
<iframe id="tree" name="tree" src="http://google.ro/" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment