Skip to content

Instantly share code, notes, and snippets.

@Taump
Forked from MatthewEppelsheimer/breakpoints.css
Created June 29, 2017 10:25
Show Gist options
  • Save Taump/4215b783efe74bea05238941c7f8ba52 to your computer and use it in GitHub Desktop.
Save Taump/4215b783efe74bea05238941c7f8ba52 to your computer and use it in GitHub Desktop.
Responsive Break Point Media Query Boilerplate
// Mobile First
@media screen and (min-width: 321px) { // iPhone landscape
}
@media screen and (min-width: 481px) { // iPad portrait
}
@media screen and (min-width: 769px) { // iPad landscape
}
// Desktop First
@media screen and (max-width: 320px) { // iPhone portrait
}
@media screen and (max-width: 480px) { // iPhone landscape
}
@media screen and (max-width: 768px) { // iPad portrait
}
@media screen and (max-width: 1024px) { // iPad landscape
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment