Created
July 18, 2015 10:44
-
-
Save otarza/bb267c1f75b35798bb2c to your computer and use it in GitHub Desktop.
FloatInIframe
This file contains 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>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> |
This file contains 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>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