Skip to content

Instantly share code, notes, and snippets.

@subzey
Created January 24, 2022 14:29
Show Gist options
  • Save subzey/ffa9cfda0efc8e09bb3c19a155d610ca to your computer and use it in GitHub Desktop.
Save subzey/ffa9cfda0efc8e09bb3c19a155d610ca to your computer and use it in GitHub Desktop.
Firefox media
<!doctype html>
<html>
<head>
<style>
body {
background: green;
}
@media (min-width: 1280px) {
body {
background: blue;
}
}
</style>
</head>
<body>
<p>iframe contents</p>
</body>
</html>
<!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