Skip to content

Instantly share code, notes, and snippets.

@otarza
Created July 18, 2015 10:44
Show Gist options
  • Save otarza/bb267c1f75b35798bb2c to your computer and use it in GitHub Desktop.
Save otarza/bb267c1f75b35798bb2c to your computer and use it in GitHub Desktop.
FloatInIframe
<!DOCTYPE html>
<html>
<head>
<title>Frame</title>
<style type="text/css">
.body {
height: 10000px;
display: block;
width: 100%;
}
.FloatingElement {
position: fixed;
bottom: 1vw;
right: 1vw;
height: 30px;
width: 100px;
background: red;
}
.element {
height: 100px;
width: 100px;
background: blue;
margin: 10px;
}
</style>
</head>
<body>
<div class="FloatingElement"></div>
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<style type="text/css">
iframe {
width: 1000px;
height: 500px;
}
</style>
</head>
<body>
<iframe src="frame.html"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment