A Pen by Jon Yablonski on CodePen.
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
| /** | |
| * Proportional Aspect Ratios for Responsive Background Images | |
| * http://daverupert.com/2012/04/uncle-daves-ol-padded-box/ | |
| */ | |
| #meowmeow { | |
| background: url(http://placekitten.com/720/405/) no-repeat center center; | |
| background-size: cover; | |
| height: 0; | |
| padding-bottom: 56.25%; /* 16:9 */ | |
| } |
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
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: border-box; | |
| } |
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
| -moz-osx-font-smoothing: grayscale; |