Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Using iframe</title>
- <style type="text/css">
- body {
- margin: 0;
- }
- #ontop {
- position: absolute;
- width: 100%;
- height: 10%;
- top: 0;
- bottom: 90%;
- background-color: yellow;
- }
- #content {
- position: absolute;
- width: 100%;
- height: 90%;
- top: 10%;
- bottom: 0;
- border: 0;
- }
- </style>
- </head>
- <body>
- <div id="ontop">Always on top</div>
- <iframe id="content" src="http://www.stackoverflow.com/"></iframe>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment