Created
July 9, 2020 05:22
-
-
Save AlifArnado/0936f5bfb0e673046c0b3b7932364527 to your computer and use it in GitHub Desktop.
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> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<style type="text/css"> | |
@media only screen and (min-device-width: 320px) and (max-device-width: 350px) { | |
body { background-color: green; } | |
} | |
@media only screen and (min-device-width: 350px) and (max-device-width: 375px) { | |
body { background-color: blue; } | |
} | |
@media only screen and (min-device-width: 376px) and (max-device-width: 425px) { | |
body { background-color: yellow; } | |
} | |
@media only screen and (min-device-width: 426px) and (max-device-width: 768px) { | |
body { background-color: red; } | |
} | |
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) { | |
body { background-color: orange; } | |
} | |
@media only screen and (min-device-width: 1025px) and (max-device-width: 1440px) { | |
body { background-color: black; } | |
} | |
</style> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment