views:

93

answers:

2

If this is a question that shouldn't be on SO, please let me know.

Has anyone tried the website:
http://csssprites.org/

To autogenerate and use CSS Sprites? What are your thoughts? I'm thinking about implementing (constantly looking for new ways to improve performance)

+3  A: 

Yes, sprites speed up a site because

  • less HTTP requests
  • avoid small overhead every image has

They make sense for icons etc

Downsides are

  • More difficult to change one icon
  • Can't cache control individual icons
alex
Yes --- I wasn't talking about sprites in specific, was talking about that website?
Kerry
It looks like it'll make the sprite creating process easier. There are a few sites like that.
alex
> Downsides are> More difficult to change one icon> Can't cache control individual iconsIt is not more difficult to change anything. Your designer has one source file with guides, say a psd. Where is the difficulty ?Caching one individual icons. This is true but why would you cache just part of a "skin" ?
redben
@redben They are edge cases, but still worthy of mention.
alex
+1  A: 

I used CSS Sprites to create my first sprite, but I tend to chop them together myself now as I personally find it easier to create strips-of-sprites (i.e. long and thin) rather than big square sprites as its easier to update them if you understand the convention used to create them.

Sohnee