Skip to content

Instantly share code, notes, and snippets.

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