Skip to content

Instantly share code, notes, and snippets.

@ghooghe
Created June 11, 2013 09:21
Show Gist options
  • Select an option

  • Save ghooghe/5755573 to your computer and use it in GitHub Desktop.

Select an option

Save ghooghe/5755573 to your computer and use it in GitHub Desktop.
media queries syntax
/* px */
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 720px) {}
@media only screen and (max-width: 320px) {}
/* dpi */
@media all and (min-resolution: 150dpi) {}
@media all and (min-resolution: 200dpi) {}
@media all and (min-resolution: 300dpi) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment