Created
July 5, 2020 13:24
-
-
Save TANVIRFAZLEY/85eed3f1a11a32dc83523e02457c45db to your computer and use it in GitHub Desktop.
media query css
This file contains 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
/* Medium Layout: 1280px. */ | |
@media only screen and (min-width: 992px) and (max-width: 1200px) {} | |
/* Tablet Layout: 768px. */ | |
@media only screen and (min-width: 768px) and (max-width: 991px) { | |
} | |
/* Mobile Layout: 320px. */ | |
@media only screen and (max-width: 767px) { | |
} | |
/* Wide Mobile Layout: 480px. */ | |
@media only screen and (min-width: 480px) and (max-width: 767px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment