Skip to content

Instantly share code, notes, and snippets.

@averyvery
Created July 3, 2012 21:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save averyvery/3043094 to your computer and use it in GitHub Desktop.
Save averyvery/3043094 to your computer and use it in GitHub Desktop.
Fitted backgrounds using Compass
@mixin fit_bg($url){
background-image: image-url($url);
display: block;
height: image-height($url);
width: image-width($url);
}
// Usage
.nav-about {
@include fit_bg('assets/structure/nav/about.png');
text-indent: -9999px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment