Skip to content

Instantly share code, notes, and snippets.

@pbroschwitz
Created June 15, 2012 12:52
Show Gist options
  • Save pbroschwitz/2936330 to your computer and use it in GitHub Desktop.
Save pbroschwitz/2936330 to your computer and use it in GitHub Desktop.
Sass sprite mixin
@mixin sprite($width, $height, $x, $y, $asset : "../img/assets.png") {
width:$width;
height:$height;
background-image:url($asset);
background-position:$x $y;
background-repeat:no-repeat;
color:transparent !important;
text-indent:-999em;
padding:0;
display:inline-block;
overflow:hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment