Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlifArnado/0936f5bfb0e673046c0b3b7932364527 to your computer and use it in GitHub Desktop.
Save AlifArnado/0936f5bfb0e673046c0b3b7932364527 to your computer and use it in GitHub Desktop.
<!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