Skip to content

Instantly share code, notes, and snippets.

@luiscoms
Created February 6, 2015 21:14
Show Gist options
  • Save luiscoms/4524cd85217f4a4b9849 to your computer and use it in GitHub Desktop.
Save luiscoms/4524cd85217f4a4b9849 to your computer and use it in GitHub Desktop.
Iframe 100% width height
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
iframe {
overflow:hidden;
overflow-x:hidden;
overflow-y:hidden;
height:100%;
width:100%;
position:absolute;
top:0px;
left:0px;
right:0px;
bottom:0px;
}
</style>
</head>
<body>
<iframe src="http://luiscoms.com.br" height="100%" width="100%" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment