Skip to content

Instantly share code, notes, and snippets.

@bi0xid
Created June 10, 2014 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bi0xid/cc003e676ce8160e6cb7 to your computer and use it in GitHub Desktop.
Save bi0xid/cc003e676ce8160e6cb7 to your computer and use it in GitHub Desktop.
Responsive iframe
<html>
<head>
<title>TITLE</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0 maximum-scale=1.0" />
<style type="text/css">
body {width:100%;height:100%;margin:0;overflow:hidden;background-color:#252525;}
#iframe {position:absolute;left:0px;top:0px;}
</style>
</head>
<body>
<iframe id="iframe" name="iframe" frameborder='0' scrolling='yes' src='IFRAME_SRC' allowfullscreen="" frameborder="0" width="100%" height="100%"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment