I'm having an issue with horizontally centering sprites using Compass Sprites.

I have a bunch of sprites that are of different sizes for icons and I want them to be centered on the container they're in so they're a left hand side icon for instance.

If I do this:

$sprite-position: 50%;
@import "sprite/*.png"; 

then the images are centered on the generated sprite.png but the CSS is actually something like:

background-position: -9px -223px;

rather than the expected:

background-position: 50% -223px;

What's the point of centering it on the sprite if its going to have the location specifically declared like that? Right now I'm hardcoding it as 50% and the Y-axis which sucks because when I add a new sprite then I have to change them all which completely defeats the purpose.

Am I doing this wrong in Compass, CSS or does it just not work as its supposed to? The only way I can see this being done is by having it specify the dimensions then contain the icon and center it within there. The 50% left value is there though so you don't need to do this... right?

Just a note... it sucks that Compass doesn't support JPEG sprites as well -.- Got about 6 promotion images on the front page and it would be nice to have them sprited up where you can just replace the images in the folder and its sorted!

Thanks, Dom

link|improve this question

74% accept rate
Dom, could you clarify what the actual problem is? From what you're saying here, it sounds like things are looking right, but you're just not happy with the way it codes the CSS. Is there an actual problem with the end result, or are you just wanting something that you don't have to recompile after an image change? – JD Smith Dec 19 '11 at 15:34
The problem is that I have a div that is 60 pixels wide and I'd like images up to 60 pixels wide (could be 15, 20, 30, 40, 55 pixels for instance) to be centered within that Div. So usually you'd create a sprite and in CSS you would write: background-position: 50% -223px to get it like that. But Compass writes the exact left location which means it doesn't center, it's still left aligned. It should put it in the middle of the sprite which doesn't really do anything different. The CSS needs to change as well. To get around this I need to have an extra div container and center the child sprite. – Dominic Watson Dec 19 '11 at 19:17
feedback

1 Answer

Just to check if I'm getting you right: You created a sprite for all the icons you want to center. Within the sprite all icons are centered, so you can use x:50% and the according y-value, right?

Since compass set's the wrong background-position you could use other method. At least, thats what I did. If you don't need to support IE6/7 you could use compasses inline-data-feature: http://compass-style.org/reference/compass/helpers/inline-data/

This way you reduce the HTTP-Requests which is the main purpose of a sprite but at the same time you get all the benefits a normal image would give you.

If you build a smart mixin this is very, very handy. And even smarter than sprites.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.