Skip to content

Instantly share code, notes, and snippets.

@adamneilson
Created January 19, 2013 14:30
Show Gist options
  • Save adamneilson/4572962 to your computer and use it in GitHub Desktop.
Save adamneilson/4572962 to your computer and use it in GitHub Desktop.
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″ />
<style>
/* ———–Smartphone View———– */
@media only screen and (max-width : 800px) {
/* All smartphone rules go inside here */
}
/* ———–Tablet View———– */
@media only screen and (max-width : 1180px) and (min-width : 801px) {
/* All tablet rules go inside here */
}
/* ———–Large screen View———– */
@media only screen and (min-width : 1181px) {
/* All large screen rules go inside here */
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment