Created
June 24, 2015 13:57
-
-
Save itzaks/95ce68584dc5666e433f to your computer and use it in GitHub Desktop.
Render an image that scales nicely and keeps its proportions. Depends on nib's image-mixin for retina images.
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
| img(src, width, height) | |
| image(src) | |
| background-size: contain | |
| background-repeat: no-repeat | |
| background-position: 50% | |
| max-width: width | |
| width: 100% | |
| margin-left: auto | |
| margin-right: auto | |
| &:before | |
| content: '' | |
| display: block | |
| padding-top: ((height / width) * 100)% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment