Last active
March 19, 2018 15:38
-
-
Save ScarletPonytail/9addcd3355234d1d1635b2391baba4dd 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
@media (min-width: 768px) { | |
/* Your awesome code */ | |
} | |
@media (min-width: 768px) and (max-width: 1240px) { | |
/* Your awesome code */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment