Skip to content

Instantly share code, notes, and snippets.

@prethiee
Created April 26, 2019 15:01
Show Gist options
  • Save prethiee/91b8689deb23ec4489e3487b3ead0000 to your computer and use it in GitHub Desktop.
Save prethiee/91b8689deb23ec4489e3487b3ead0000 to your computer and use it in GitHub Desktop.
Media query for phone and tablet (iPhone, iPad, android).
/****** START - iPhone ******/
@media screen and (min-width: 320px) and (max-width: 767px) {
/**
code here
**/
}
/****** START - iPad ******/
@media screen and (min-width: 768px) and (max-width: 992px) {
/**
code here
**/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment