Skip to content

Instantly share code, notes, and snippets.

@denishvachhani
Created November 5, 2015 08:36
Show Gist options
  • Save denishvachhani/0647032a3a48c1c3edb2 to your computer and use it in GitHub Desktop.
Save denishvachhani/0647032a3a48c1c3edb2 to your computer and use it in GitHub Desktop.
Media Query
/* 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