Created
April 15, 2020 09:08
-
-
Save mnemonic47/23aa52c7bec943568035d9622185c37b to your computer and use it in GitHub Desktop.
iframe example
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> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| * { | |
| box-sizing: border-box; | |
| } | |
| .column { | |
| float: left; | |
| width: 33.33%; | |
| padding: 5px; | |
| height: auto; | |
| } | |
| .row:after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } | |
| @media screen and (max-width: 600px) { | |
| .column { | |
| width: 100%; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="row"> | |
| <div class="column"> | |
| <h4>Sida 1</h4> | |
| <iframe src="https://www.google.se"></iframe> | |
| </div> | |
| <div class="column"> | |
| <h4>Sida 2</h4> | |
| <iframe src="https://www.google.se"></iframe> | |
| </div> | |
| <div class="column"> | |
| <h4>Sida 3</h4> | |
| <iframe src="https://www.google.se"></iframe> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment