Created
June 19, 2015 12:00
-
-
Save tbillington/ffe0d34018189acfe690 to your computer and use it in GitHub Desktop.
Media query example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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