Created
November 20, 2019 19:54
-
-
Save indy/c8bfac88b3be79a1fb7c48d41d280542 to your computer and use it in GitHub Desktop.
HTML with broken CSS media query
This file contains 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
<head> | |
<style type = text/css> | |
body{background:yellow;}@media only screen and(max-width:700px){body{background:red;}} | |
</style> | |
</head> | |
<body> | |
<h1>The background should turn red when the window is narrow</h1> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment