Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save landru247/6643743 to your computer and use it in GitHub Desktop.
Save landru247/6643743 to your computer and use it in GitHub Desktop.
BootStrap(3): CSS - Media queries break points
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment