Last active
January 18, 2024 09:43
-
-
Save emailjohnthomascaballero/e0caeb8a664a494b73c89f34e94b5541 to your computer and use it in GitHub Desktop.
Responsive Design Cheat Sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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