Skip to content

Instantly share code, notes, and snippets.

@rotten77
Created July 11, 2014 13:31
Show Gist options
  • Save rotten77/c96e3ad2578584c75d50 to your computer and use it in GitHub Desktop.
Save rotten77/c96e3ad2578584c75d50 to your computer and use it in GitHub Desktop.
Bootstrap 3 - Media queries breakpoints
/* Extra small devices (no-need) */
@media (max-width: 767px) {
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment