Created
June 7, 2016 13:07
-
-
Save mateusneves/18bc8767d3a91214782faf94e6f55512 to your computer and use it in GitHub Desktop.
Basic media query for responsive websites
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 only screen and (min-width: 320px) { | |
} | |
@media only screen and (min-width: 480px) { | |
} | |
@media only screen and (min-width: 768px) { | |
} | |
@media only screen and (min-width: 1024px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment