Created
June 1, 2016 11:05
-
-
Save Gegam/a9c54c828b77e1adea0f5a8a7559332c to your computer and use it in GitHub Desktop.
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 lang="ru-RU"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta property="og:title" content=""> | |
| <meta property="og:image" content=""> | |
| <link rel="image_src" href="img/share.png"> | |
| <meta property="og:description" content=""> | |
| <meta name="description" content=""> | |
| <link rel="shortcut icon" href=""> | |
| <title></title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| html, | |
| body, | |
| #container { | |
| height: 100%; | |
| } | |
| #container { | |
| position: relative; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| padding-top: 80px; | |
| } | |
| .header { | |
| position: absolute; | |
| top: 0; | |
| width: 100%; | |
| height: 80px; | |
| background-color: aqua; | |
| } | |
| #iframe { | |
| display: block; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <div class="header">Сюда идет шапка</div> | |
| <iframe id="iframe" frameborder="0"></iframe> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment