Skip to content

Instantly share code, notes, and snippets.

@bencallahan
Created October 24, 2012 20:07
Show Gist options
  • Select an option

  • Save bencallahan/3948506 to your computer and use it in GitHub Desktop.

Select an option

Save bencallahan/3948506 to your computer and use it in GitHub Desktop.
basic media query css
/* mq.css */
@media (min-width: 30em) {
div.column {
width: 50%;
}
}
@media (min-width: 60em) {
div.column {
width: 33%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment