Skip to content

Instantly share code, notes, and snippets.

@enggsuraj
Created December 6, 2020 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enggsuraj/9c1677f0c554991ab0f303c21e5d29b4 to your computer and use it in GitHub Desktop.
Save enggsuraj/9c1677f0c554991ab0f303c21e5d29b4 to your computer and use it in GitHub Desktop.
/* WIDTH: 1200 to 2000px */
@media only screen and (max-width: 2000px) {
}
/* WIDTH: 1024 to 1200px */
@media only screen and (max-width: 1200px) {
}
/* WIDTH: 768 to 1024px */
@media only screen and (max-width: 1024px) {
}
/* IPAD*/
@media only screen and (max-width: 768px) {
}
/* SURFACE DUO */
@media only screen and (max-width: 540px) {
}
/* IPHONE 6/7/8 PLUS */
@media only screen and (max-width: 414px) {
}
/* PIXEL 2*/
@media only screen and (max-width: 411px) {
}
/* IPHONE 6/7/8/X */
@media only screen and (max-width: 375px) {
}
/* MOTO G4 - GALAXY S5*/
@media only screen and (max-width: 360px) {
}
/* IPHONE 5/SE */
@media only screen and (max-width: 320px) {
}
/* GALAXY FOLD */
@media only screen and (max-width: 280px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment