Skip to content

Instantly share code, notes, and snippets.

@que01
Created June 27, 2016 07:41
Show Gist options
  • Save que01/5c6e35b8cd9b8f0627d280c1f7f99624 to your computer and use it in GitHub Desktop.
Save que01/5c6e35b8cd9b8f0627d280c1f7f99624 to your computer and use it in GitHub Desktop.
media-query.css
/* Portrait phones and smaller */
@media (max-width: 480px) { }
/* Landscape phones and portrait tablets */
@media (max-width: 767px) { }
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) { }
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment