Iframe full screen Website
Iframe full-screen Website
Your iframe Website width and height auto full-screen page view
- <!DOCTYPE html>
- <html>
- <head>
- <title>Iframe full screen Website Demo</title>
- <style>
- *{
- margin:0;
- padding:0;
- }
- html,
- body {
- height:100%;
- width:100%;
- overflow:hidden;
- }
- iframe {
- float:left;
- height:100%;
- /* All display width 100% */
- width:100%;
- /* top to -18 px */
- margin-top: -18px;
- }
- .header {
- border-bottom:1px solid #000
- }
- .content {
- height:100%;
- }
- .top-h {
- width: 100%;
- background: red;
- margin-bottom: 30px;
- border-bottom: 2px solid;
- padding: 10px
- }
- .text-st {
- color: white;
- text-align: center;
- }
- </style>
- </head>
- <body>
- <div class="top-h">
- <div class="text-st" >
- <h1>Iframe full screen Website Demo</h1>
- <h2>Your iframe Website width and height auto full screen page view - https://onlylearn24.com/</h2>
- </div>
- </div>
- <iframe frameborder="0" src="https://onlylearn24.com/"></iframe>
- </body>
- </html>
shelleyakter
So nice post,