Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active August 29, 2015 14:15
Show Gist options
  • Save jeroen/d2707b091217847d315c to your computer and use it in GitHub Desktop.
Save jeroen/d2707b091217847d315c to your computer and use it in GitHub Desktop.
Example of full screen iframe
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Example of embedded iframe</title>
<style type="text/css">
body {
margin: 0;
overflow: hidden;
}
iframe {
height: 100%;
left: 0px;
position: absolute;
top: 0px;
width: 100%;
}
</style>
</head>
<body>
<iframe src="https://public.opencpu.org/ocpu/library/stocks/www/" frameborder="0"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment