Created
February 6, 2015 21:14
-
-
Save luiscoms/4524cd85217f4a4b9849 to your computer and use it in GitHub Desktop.
Iframe 100% width height
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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