Skip to content

Instantly share code, notes, and snippets.

@headStyleColorRed
Last active June 27, 2020 18:26
Show Gist options
  • Save headStyleColorRed/61579a795f32685040248498988db16a to your computer and use it in GitHub Desktop.
Save headStyleColorRed/61579a795f32685040248498988db16a to your computer and use it in GitHub Desktop.
/*-------------- IPHONE 5 ----------------*/
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) { }
/*-------------- IPHONE 6 ----------------*/
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) { }
/*---------------- IPAD ----------------*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { }
/*-------------- HALF SCREEN ----------------*/
@media only screen and (min-device-width: 500px) and (max-width: 1000px) { }
/*-------------- FULL SCREEN ----------------*/
@media only screen and (min-width: 1001px) and (max-width: 1450px) { }
/*-------------- MONITOR SCREEN ----------------*/
@media only screen and (min-width: 1450px) { }
@headStyleColorRed
Copy link
Author

Media queries for a couple of display sizes

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