Created
December 16, 2021 13:14
-
-
Save Uvacoder/5a2bde375210606b5cfb9408d65ee642 to your computer and use it in GitHub Desktop.
CSS screen media queries
This file contains hidden or 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
| @media (min-width: 640px) { | |
| /* mobile (sm) */ | |
| } | |
| @media (min-width: 768px) { | |
| /* tablet (md) */ | |
| } | |
| @media (min-width: 1024px) { | |
| /* laptop (lg) */ | |
| } | |
| @media (min-width: 1280px) { | |
| /* desktop (xl) */ | |
| } | |
| @media (min-width: 1536px) { | |
| /* large desktop (2xl) */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment