Skip to content

Instantly share code, notes, and snippets.

@a374ru
Last active May 7, 2025 02:54
Show Gist options
  • Save a374ru/afe65a256984ffd7ddd5378d9704826d to your computer and use it in GitHub Desktop.
Save a374ru/afe65a256984ffd7ddd5378d9704826d to your computer and use it in GitHub Desktop.
Media queries CSS
@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 */
}

Медиа запросы CSS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment