Created
December 12, 2016 11:41
-
-
Save ftonato/433896a4ab088939498f93c809cfd277 to your computer and use it in GitHub Desktop.
Basic Media Query
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Basic Media Query</title> | |
<style> | |
.title { | |
color: #222; | |
} | |
.first, .second, .third, .fourth { | |
display: none; | |
} | |
@media screen and (max-width: 400px) { | |
body { | |
background-color: #f1c40f; | |
} | |
.first { | |
display: block; | |
} | |
} | |
@media screen and (min-width: 301px) and (max-width: 600px) { | |
body { | |
background-color: #e67e22; | |
} | |
.first { | |
display: none; | |
} | |
.second { | |
display: block; | |
} | |
} | |
@media screen and (min-width: 601px) { | |
body { | |
background-color: #e74c3c; | |
} | |
.third { | |
display: block; | |
} | |
} | |
@media screen and (min-width: 961px) { | |
body { | |
background-color: #9b59b6; | |
} | |
.third { | |
display: none; | |
} | |
.fourth { | |
display: block; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<h1 class="title first">width <= 400px</h1> | |
<h1 class="title second">width >= 300px and width <= 600px</h1> | |
<h1 class="title third">width >= 601px</h1> | |
<h1 class="title fourth">width >= 961px</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment