Skip to content

Instantly share code, notes, and snippets.

@spilliams
Created June 11, 2012 22:07
Show Gist options
  • Save spilliams/2913032 to your computer and use it in GitHub Desktop.
Save spilliams/2913032 to your computer and use it in GitHub Desktop.
Responsive Breakpoints Boilerplate
.show_on_phones, .show_on_tablets, .hide_on_desktop {
display: none;
}
@media only screen and (max-width: 768px) and (min-width: 481px) {
/* tablets only */
.show_on_tablets {
display: block;
}
.show_on_desktop, .hide_on_tablets {
display: none;
}
}
@media only screen and (max-width: 480px) {
/* phones */
.show_on_phones {
display: block;
}
.show_on_desktop, .hide_on_phones {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment