Created
September 14, 2012 01:17
-
-
Save navitronic/3719206 to your computer and use it in GitHub Desktop.
Spites in LESS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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