Skip to content

Instantly share code, notes, and snippets.

@bretterer
Last active January 27, 2019 00:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bretterer/6119024 to your computer and use it in GitHub Desktop.
Save bretterer/6119024 to your computer and use it in GitHub Desktop.
Bootstrap 3 Breakpoints
/* Tiny Devices: Phones */
@media (max-width: 767px) {
}
/* Small Devices: Tablets */
@media (min-width: 768px) and (max-width: 992px) {
}
/* Medium Devices: Desktops */
@media (min-width: 993px) and (max-width: 1199px) {
}
/* Large Devices: Large Desktops */
@media (min-width: 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment