Created
January 24, 2022 14:29
-
-
Save subzey/ffa9cfda0efc8e09bb3c19a155d610ca to your computer and use it in GitHub Desktop.
Firefox media
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> | |
<style> | |
body { | |
background: green; | |
} | |
@media (min-width: 1280px) { | |
body { | |
background: blue; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<p>iframe contents</p> | |
</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> | |
<style> | |
iframe { | |
display: block; | |
width: 1280px; | |
border: none; | |
} | |
</style> | |
</head> | |
<body> | |
<iframe src="frame.html"></iframe> | |
<p>Open this page in Firefox then try zooming in and out</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment