Skip to content

Instantly share code, notes, and snippets.

@rubillionaire
Last active December 12, 2015 09:29
Show Gist options
  • Save rubillionaire/4751981 to your computer and use it in GitHub Desktop.
Save rubillionaire/4751981 to your computer and use it in GitHub Desktop.
Media query exmaple.
.article {
/* styles used regardless of window size */
}
@media all and (min-width: 320px) {
.article {
width: 100px;
height: 100px;
}
}
@media all and (min-width: 500px) {
.article {
width: 150px;
height: 150px;
}
}
@media all and (min-width: 700px) {
.article {
width: 200px;
height: 200px;
}
}
@media all and (min-width: 900px) {
.article {
width: 250px;
height: 250px;
}
}
@media all and (min-width: 1100px) {
.article {
width: 300px;
height: 300px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment