Skip to content

Instantly share code, notes, and snippets.

@itzaks
Created June 24, 2015 13:57
Show Gist options
  • Select an option

  • Save itzaks/95ce68584dc5666e433f to your computer and use it in GitHub Desktop.

Select an option

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.
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