Skip to content

Instantly share code, notes, and snippets.

@alcance
Created March 4, 2015 06:28
Show Gist options
  • Save alcance/ccb31e0ac203d2ce0c9f to your computer and use it in GitHub Desktop.
Save alcance/ccb31e0ac203d2ce0c9f to your computer and use it in GitHub Desktop.
/* Mobile */
@media (min-width:320px) {
.tester {
width:100%;
height:500px;
background-color:white;
}
}
/* Tablet */
@media (min-width:640px) {
.tester {
width:100%;
height:500px;
background-color:red;
}
}
/* Desktop */
@media (min-width:960px) {
.tester {
width:100%;
height:500px;
background-color:blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment