Created
January 18, 2018 14:17
-
-
Save derrickwilliams/f73c5fb95cf356a16df8366df80f35e2 to your computer and use it in GitHub Desktop.
Responsive 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> | |
| <title></title> | |
| </head> | |
| <body> | |
| <h1>Main Page</h1> | |
| <iframe class="wide-iframe" src="index2.html"></iframe> | |
| <iframe class="narrow-iframe" src="index2.html"></iframe> | |
| <style> | |
| .wide-iframe { | |
| width: 650px; | |
| height: 500px; | |
| } | |
| .narrow-iframe { | |
| width: 300px; | |
| height: 500px; | |
| } | |
| </style> | |
| </body> | |
| </html> |
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> | |
| <title></title> | |
| </head> | |
| <body> | |
| <h1>Inside the Iframe</h1> | |
| <style> | |
| @media (max-width: 600px) { | |
| body { background-color: #f00; } | |
| } | |
| </style> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment