Created
January 18, 2018 14:17
-
-
Save derrickwilliams/f73c5fb95cf356a16df8366df80f35e2 to your computer and use it in GitHub Desktop.
Revisions
-
derrickwilliams created this gist
Jan 18, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ <!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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <!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>