Skip to content

Instantly share code, notes, and snippets.

@rsgranne
Created July 26, 2018 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsgranne/02a9cde1e107e514dd4389803c203eec to your computer and use it in GitHub Desktop.
Save rsgranne/02a9cde1e107e514dd4389803c203eec to your computer and use it in GitHub Desktop.
@media rules for Bootstrap 3
@media (min-width: 1200px) {
/* Bootstrap 3 LG Breakpoint only */
}
@media (min-width: 992px) and (max-width: 1199px) {
/* Bootstrap 3 MD Breakpoint ONLY */
}
@media (min-width: 992px) {
/* Bootstrap 3 MD Breakpoint & up */
}
@media (min-width: 768px) and (max-width: 991px) {
/* Bootstrap 3 SM Breakpoint ONLY */
}
@media (min-width: 768px) {
/* Bootstrap 3 SM Breakpoint & up */
}
@media (max-width: 767px) {
/* Bootstrap 3 XS Breakpoint only */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment