Skip to content

Instantly share code, notes, and snippets.

@emailjohnthomascaballero
Last active January 18, 2024 09:43
Show Gist options
  • Save emailjohnthomascaballero/e0caeb8a664a494b73c89f34e94b5541 to your computer and use it in GitHub Desktop.
Save emailjohnthomascaballero/e0caeb8a664a494b73c89f34e94b5541 to your computer and use it in GitHub Desktop.
Responsive Design Cheat Sheet
/* SOURCE LINK: https://www.codeply.com/responsive-design-cheatsheet.html */
/* Bootstrap /*
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
/* 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: 1200px) { ... }
/* Purse CSS */
/* Small */
@media (min-width: 35.5em) { ... }
/* Medium */
@media (min-width: 48em) { ... }
/* Large */
@media (min-width: 64em) { ... }
/* X-Large */
@media (min-width: 80em) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment