Skip to content

Instantly share code, notes, and snippets.

@guyroutledge
Created October 18, 2013 13:45
Show Gist options
  • Save guyroutledge/7041755 to your computer and use it in GitHub Desktop.
Save guyroutledge/7041755 to your computer and use it in GitHub Desktop.
A mixin for setting an elements width and height to the correct size for a background image
@mixin background-image-dimensions($image) {
width:image-width($image);
height:image-height($image);
background-image:url($image);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment