vote up 1 vote down star
1

In CSS Sprites you will often find padding between each image. I believe the idea is so that if the page is resized then one image won't bleed into another.

I think this depends on the different types of browser zoom (best explained by Jeff).

However, I haven't been able to see this behaviour in my tests. Is this only a problem with older browsers? (I havent been able to test with IE6 at the current time so I'm counting that as 'old').

Should I still worry about leaving space? Its kind of a pain.

For instance :

A CSS Sprite I found for AOL has padding between each image : VIEW

but The Daily Show decided not to bother : VIEW

flag

44% accept rate

2 Answers

vote up 4 vote down

It shouldn't need to be padded, but when zoomed, especially in IE8 (betas more than the RC), there is image bleeding if there is no padding.

Best example is to go to Google.com -> Search, and zoom... you'll start to see "underlines" at the bottom right of the image as the zooming rounds up/down.

In theory, a 1px padding on all sides of a sprite should be fine.

Here's the sprite from Google (images)...

alt text

But when zoomed, the +,-,x icons bleed into the main Google logo.

alt text

link|flag
ah how ironic. i'm looking backward to OLDER browsers and theres a problem with NEWER browsers! thanks for the screenshots – Simon Mar 15 at 4:39
yeah, the clip above was actually taken in Firefox 3, but in IE8 (at certain zoom levels) its much worse. – scunliffe Mar 15 at 18:56
vote up 0 vote down

Speaking of the older browsers (those using text zoom), you don't always need padding.

The main difference between your two examples is that the Daily Show sprite already includes the menu item's text in the image itself.

When using text zoom, the AOL menu items could stretch out vertically due to the larger font size, and the menu text might even wrap to two lines. To accommodate for such eventualities, those icons need a little padding to ensure they don't bleed. Typically, you'd just try to make sure it doesn't bleed on any of IE6's five text sizes.

Since The Daily Show's menu doesn't contain any (visible) HTML text its size won't be affected by text zoom (though you might need a line-height: 0; or so to be sure), so it doesn't need any padding.

As scunliffe already showed, browsers using page zoom may need sprites to have a little padding due to rounding errors.

link|flag
right that makes sense - the addition of text greatly increases the chance of the browser not scaling the text and image at the same time. so far I have not combined text (as html) and images in one. but the boundary conditions as shown by @scunliffe may make it a good idea to always do this – Simon Mar 28 at 1:25

Your Answer

Get an OpenID
or

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