Created
October 28, 2018 11:04
-
-
Save charisTheo/e16df59cf1d00ffc5e587466b971f12b to your computer and use it in GitHub Desktop.
CSS 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
| /* Extra small devices and above */ | |
| @media only screen and (min-width: 319px) { | |
| /* content; */ | |
| } | |
| /* Small devices and above */ | |
| @media only screen and (min-width: 479px) { | |
| /* content; */ | |
| } | |
| /* Tablet devices and above */ | |
| @media only screen and (min-width: 767px) { | |
| /* content; */ | |
| } | |
| /* Desktop devices and above */ | |
| @media only screen and (min-width: 959px) { | |
| /* content; */ | |
| } | |
| /* Wide Desktop devices */ | |
| @media only screen and (min-width: 1279px) { | |
| /* content; */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment