Last active
May 7, 2025 02:54
-
-
Save a374ru/afe65a256984ffd7ddd5378d9704826d to your computer and use it in GitHub Desktop.
Media queries CSS
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-device-width: 240px) and (max-device-width: 444px) and (orientation: portrait) { | |
/* your properties */ | |
} | |
@media only screen and (min-device-width: 425px) and (max-device-width: 767px) and (orientation: landscape) { | |
/* your properties */ | |
} | |
@media only screen and (min-device-width: 736px) and (max-device-width: 1100px) and (orientation: landscape) { | |
/* your properties */ | |
} | |
@media only screen and (min-device-width: 737px) and (max-device-width: 1024px) and (orientation: portrait) { | |
/* your properties */ | |
} | |
@media only screen and (min-width: 1024px) and (max-device-width: 1752px) { | |
/* your properties */ | |
} | |
@media only screen and (min-width: 1752px) { | |
/* your properties */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment