Skip to content

Instantly share code, notes, and snippets.

@tbillington
Created June 19, 2015 12:00
Show Gist options
  • Save tbillington/ffe0d34018189acfe690 to your computer and use it in GitHub Desktop.
Save tbillington/ffe0d34018189acfe690 to your computer and use it in GitHub Desktop.
Media query example
.related-products li {
float: left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 0.5em;
width: 50%;
}
@media screen and (min-width: 28.75em) {
.related-products li {
width: 33.3333333%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment