Skip to content

Instantly share code, notes, and snippets.

@darren131
Created April 18, 2012 01:37
Show Gist options
  • Save darren131/2410433 to your computer and use it in GitHub Desktop.
Save darren131/2410433 to your computer and use it in GitHub Desktop.
Sprite LESS Snippet. Someone else has probably done this already, but I thought I'd share it nevertheless.
@spritePath: '../images/sprite.png';
.sprite(@url: @spritePath, @xpos: 0, @ypos: 0) {
background-image: url(@url);
background-repeat: none;
background-position: @xpos @ypos;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment