Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dancr13/e9678a9b21f0976588df79e10031d334 to your computer and use it in GitHub Desktop.
Save dancr13/e9678a9b21f0976588df79e10031d334 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