Skip to content

Instantly share code, notes, and snippets.

@navitronic
Created September 14, 2012 01:17
Show Gist options
  • Save navitronic/3719206 to your computer and use it in GitHub Desktop.
Save navitronic/3719206 to your computer and use it in GitHub Desktop.
Spites in LESS
.bg-item {
background: transparent url(img/background-sprite.png) no-repeat 0 0;
position: absolute;
display: block;
}
.circle {
.sprite(50px, 49px, 0, 0);
}
.sprite(@width, @height, @bgleft, @bgtop)
{
width: @width;
height: @height;
background-position: @bgleft @bgtop;
}
/* <span class="bg-item circle"/> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment