Skip to content

Instantly share code, notes, and snippets.

@jayontraps
Last active March 2, 2016 20:18
Show Gist options
  • Save jayontraps/2312318 to your computer and use it in GitHub Desktop.
Save jayontraps/2312318 to your computer and use it in GitHub Desktop.
CSS Media Queries
@media screen and (min-width:460px) {
h1 {
color: blue;
}
}
@media screen and (min-width:660px) {
h1 {
color: red;
}
}
@media screen and (min-width:960px) {
h1 {
color: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment