Skip to content

Instantly share code, notes, and snippets.

@garyconstable
Forked from trey/rwd.css
Last active October 21, 2015 11:10
Show Gist options
  • Save garyconstable/b4494cece166fba7b83e to your computer and use it in GitHub Desktop.
Save garyconstable/b4494cece166fba7b83e to your computer and use it in GitHub Desktop.
/*========== Mobile First Method ==========*/
@media only screen and (min-width : 320px) {}
@media only screen and (min-width : 480px) {}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) {}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape){}
@media only screen and (min-width : 768px) {}
@media only screen and (min-width : 992px) {}
@media only screen and (min-width : 1200px){}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment