Skip to content

Instantly share code, notes, and snippets.

@jumarome
Forked from bretterer/Bootstrap 3 Breakpoints
Created January 27, 2019 00:32
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 jumarome/8c7839bb0eca326f881465a657b0bd46 to your computer and use it in GitHub Desktop.
Save jumarome/8c7839bb0eca326f881465a657b0bd46 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