-
-
Save fport/7d296b9f8a7fde753759275d98cd769d to your computer and use it in GitHub Desktop.
Media queries for laptop tablet and mobile
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 screen and (max-width: 1024px) { | |
/* Laptop (1024px) */ | |
} | |
@media screen and (max-width: 768px) { | |
/* Tablet (768px) */ | |
} | |
@media screen and (max-width: 320px) { | |
/* Phone (Small) */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment