Created
August 19, 2016 08:08
-
-
Save mrofi/58224fd0365db99c9aec67c06d51475c to your computer and use it in GitHub Desktop.
Full with / height Iframe
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> | |
| <title>NUSP-2</title> | |
| <style type="text/css" media="screen"> | |
| body, | |
| html { | |
| width: 100%; | |
| height: 100%; | |
| overflow: hidden; | |
| } | |
| * { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| iframe { | |
| width: 100%; | |
| height: 100%; | |
| border: none; | |
| display: block; | |
| position: absolute; | |
| overflow-x: hidden; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <iframe src="//roket.id" width="100%" height="100%" frameborder="0" id="iframe" onload="resizeIframe(this)"></iframe> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment