Skip to content

Instantly share code, notes, and snippets.

@hitautodestruct
Created October 20, 2013 12:12
Show Gist options
  • Save hitautodestruct/7068716 to your computer and use it in GitHub Desktop.
Save hitautodestruct/7068716 to your computer and use it in GitHub Desktop.
Smallest example of desktop first media query.
.wide { height: 10px; background-color: red; }
@media all and (max-width: 20em) {
.wide { background-color: blue; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment