Skip to content

Instantly share code, notes, and snippets.

@jrcryer
Last active December 13, 2015 21:58
Show Gist options
  • Save jrcryer/4980560 to your computer and use it in GitHub Desktop.
Save jrcryer/4980560 to your computer and use it in GitHub Desktop.
Responsive Bootstrap
/* Mobile landscape */
@media screen and (min-width: 480px) {
}
/* Small tablet portrait */
@media screen and (min-width: 600px) {
}
/* Tablet portrait */
@media screen and (min-width: 768px) {
}
/* Small tablet landscape */
@media screen and (min-width: 800px) {
}
/* Tablet landscape > */
@media screen and (min-width: 1024px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment