top | item 691796

CSS Sprites are Stupid - Let's Use Archives Instead (Firefox Demo)

58 points| mixmax | 16 years ago |kaioa.com | reply

37 comments

order
[+] mustpax|16 years ago|reply
If you're looking for a way of bundling resource requests for arbitrary file types into single HTTP request, there is already a feature in the HTTP 1.1 that allows you to do this; it's called HTTP Pipelining [http://en.wikipedia.org/wiki/HTTP_pipelining]. Unfortunately this feature is off by default in Firefox, but you can override it to be on using about:config.

Other browsers don't yet support it, but they don't support archives yet either. As it stands, CSS Sprites are really the only cross-browser compatible option we have, and we're going to have to make do with them.

I like your idea, but it appears to me that this is better implemented on the HTTP layer.

[+] mbrubeck|16 years ago|reply
Pipelining reuses a single TCP connection, but still makes multiple HTTP requests. This means that you still send and receive a bunch of mostly-duplicated request/response headers, and still have the latency of multiple request/response round trips.

Archives/sprites/etc. are better in some ways than pipelined requests. Consider the case where the client is making a conditional GET request and the content hasn't changed on the server. If the content is bundled into a single resource, then you just have a single request and a single HTTP 304 response with no body. But if the content is served as multiple resources, then you have the exact same conversation repeated once for each resource. For a site with 100 images, this will use 100x the bandwidth and take nearly 100 times as long.

[+] Batsu|16 years ago|reply
Does anyone have any further information on this? It's interesting to see that while most modern web servers handle this, most web clients do not or disable it be default.

If this offers nothing other than a performance increase, where is the issue?

[+] sayrer|16 years ago|reply
Pipelining doesn't work.
[+] TweedHeads|16 years ago|reply
"most modern web servers handle pipelining without any problem. Exceptions include IIS 4 and reportedly 5."

Color me surprised.

[+] Barnabas|16 years ago|reply
Here's some info about including image data as part of the URI: http://en.wikipedia.org/wiki/Data_URI_scheme.

Assuming the HTML is compressed, wouldn't this also achieve the same "poor-man's pipelining" result, as in less server connections? It seems to have broader browser support than the JAR thing.

Edit: I found this too... the MHTML method linked in this article is also interesting: http://danielmclaren.net/2008/03/embedding-base64-image-data...

[+] tedunangst|16 years ago|reply
Data uri's can't be cached, so they can only help latency of a cold page load, but they make every page after that slower. (if you put the data uri in your html instead of the css)
[+] riso|16 years ago|reply
What would be nice is a script that extracts the image urls from the stylesheet(s), creates the sprite image for the used images, then creates another css file with the required offsets for the classes.

I have been putting off spending some time creating a script like this, mostly because I am pretty sure there is already one out there that does it.

[+] tdavis|16 years ago|reply
CSS sprites are stupid. So stupid, in fact, that I refuse to use them. It wouldn't be such a big deal, I suppose, if IE6 supported proper transparency. But as it stands, I still cannot, in 2009, safely use a 24-bit PNG for my CSS sprites.

If anything like this is ever standardized, which seems unlikely, and implemented in all the major browsers, which seems even more unlikely, MAYBE in 30 years we can use it in production.

But as far as fantasies go, it's one of the cooler ones!

[+] andreyf|16 years ago|reply
What do sprites have to do with transparency? I thought they were just about displaying a part of the image with offset/size?
[+] blasdel|16 years ago|reply
Surely you mean 32-bit RGBA PNG?
[+] pjhyett|16 years ago|reply
Doesn't yahoo.com use sprites? Not trying to be difficult, is the transparency issue the reason you don't like them?

edit: I suppose I could have read the article first

[+] pkulak|16 years ago|reply
That's even hackier than using a sprite.
[+] stcredzero|16 years ago|reply
You could have a webserver generate the jar dynamically. In that case, everything could be in there.
[+] there|16 years ago|reply

    The same with an absolute URL:

    <img src="jar:http://kaioa.com/b/0907/test.jar!/img1.png" alt="img1" width="32" height="32"/>
my security sense is tingling...
[+] fno|16 years ago|reply
If you are thinking of local directory traversal (src="jar:http://kaioa.com/b/0907/test.jar!../../somefile) then I think you are underestimating browser coders. Introducing that security issue would require a dedicated effort.
[+] noss|16 years ago|reply
How about using data urls for embedding images in the CSS?

Ok so IE6 and IE7 doesnt support it... never experienced that before.

[+] lhorie|16 years ago|reply
IE8 supposedly does, but then again, I've heard that there's a limit to how large an image you can embed in a data url in some browsers.
[+] gferd|16 years ago|reply
CSS Sprites aren't stupid, they're just clunky. Single browser technology, however, is positively retarded. Next?
[+] Semiapies|16 years ago|reply
Not going to agree quite so harshly, but a technique based on forgotten functionality in one browser is rather gimmicky.
[+] TweedHeads|16 years ago|reply
Cool hack.

In the future, when network speed is not an issue, we should be able to send the whole web app (or page) in one packet.

One request, one response.

[+] roc|16 years ago|reply
In the future, as network speed becomes less of an issue, web apps will increase in size and complexity to compensate.
[+] achmed|16 years ago|reply
> when network speed is not an issue, we should be able to > send the whole web app (or page) in one packet

it is not the case that a faster network implies larger packets

[+] erlanger|16 years ago|reply
Sprites are easy to use though and are well-supported.
[+] erlanger|16 years ago|reply
Sprites are easy to use though and are well-supported.