The other day I was looking at the source of a greasemonkey userscript and noticed the following in their css:

.even { background: #fff url(data:image/gif;base64,R0lGODlhBgASALMAAOfn5+rq6uvr6+zs7O7u7vHx8fPz8/b29vj4+P39/f///wAAAAAAAAAAAAAAAAAAACwAAAAABgASAAAIMAAVCBxIsKDBgwgTDkzAsKGAhxARSJx4oKJFAxgzFtjIkYDHjwNCigxAsiSAkygDAgA7) repeat-x bottom}

I can appreciate that a greasemonkey script would want to bundle anything it can within the source as opposed to host it on a server, that's obvious enough. But since I had not seen this technique previously, I considered its use and it seems appealing for a number of reasons:

  1. It will reduce the amount of HTTP requests on page load, thus enhancing performance
  2. If no CDN, then it will reduce the amount of traffic generated through cookies being sent alongside of images
  3. CSS files can be cached
  4. CSS files can be GZIPPED

Considering that IE6 (for instance) has problems with cache for background images, this seems like it's not the worst idea...

So, is this a good or bad practice, why WOULDN'T you use it and what tools would you use to base64 encode the images?

update - results of testing

Nice, but it will be slightly less useful for smaller images, I guess.

link|improve this question

lovely question... – Sander Versluys Jul 14 '09 at 8:27
Do some test runs? Would be interesting how much the compression can compensate the fact you base64 encode it. – Dykam Jul 14 '09 at 8:39
posted the results of the test, also avail on my blog fragged.org/… – Dimitar Christoff Feb 18 '11 at 15:35
3  
Good Question. Just wanted to add that it doesnt work for IE7 and below. But there is some work arounds. Here is a nice article about it jonraasch.com/blog/css-data-uris-in-all-browsers – MartinF Jun 29 '11 at 14:46
1  
Adding more PRO: cache limits on cellular devices... CON: some images should be treated as content rather than simple presentation and thus are better fit for HTML IMG tags than CSS background images. – one.beat.consumer Apr 9 at 17:44
show 1 more comment
feedback

7 Answers

up vote 28 down vote accepted

It's not a good idea when you want your images and style information to be cached separately. Also if you encode a large image or a significant number of images in to your css file it will take the browser longer to download the file leaving your site without any of the style information until the download completes. For small images that you don't intend on changing often if ever it is a fine solution.

as far as generating the base64 encoding:

link|improve this answer
2  
webcodertools.com/imagetobase64converter allows to upload a file and directly outputs CSS code. – simon04 Oct 24 '11 at 19:50
feedback

If you reference that image just once, I don’t see a problem to embed it into your CSS file. But once you use more than one image or need to reference it multiple times in your CSS, you might consider using a single image map instead you can then crop your single images from (see CSS Sprites).

link|improve this answer
5  
It just means that you should have one css class on an element for referencing the background image, and another css class for referencing the offsets into that image to use for that element. – Duncan Beevers Oct 1 '10 at 19:22
feedback

"Data URIs" should definitely be considered for mobile sites. HTTP access over cellular networks comes with higher latency per request/response. So there are some use cases where jamming your images as data into CSS or HTML templates could be beneficial on mobile web apps. You should measure usage on a case-by-case basis -- I'm not advocating that data URIs should be used everywhere in a mobile web app.

Note that mobile browsers have limitations on total size of files that can be cached. Limits for iOS 3.2 were pretty low (25K per file), but are getting larger (100K) for newer versions of Mobile Safari. So be sure to keep an eye on your total file size when including data URIs.

http://www.yuiblog.com/blog/2010/06/28/mobile-browser-cache-limits/

link|improve this answer
feedback

Base64 adds about 10% to the image size after GZipped but that outweighs the benefits when it comes to mobile. Since there is a overall trend with responsive web design, it is highly recommended.

W3C also recommends this approach for mobile and if you use asset pipeline in rails, this is a default feature when compressing your css

http://www.w3.org/TR/mwabp/#bp-conserve-css-images

link|improve this answer
good point re mobile/responsive though I am not sure of the 10%, where do you get that data from? – Dimitar Christoff Jan 16 at 9:51
This is correct. The slowest thing in any mobile device is the open/close of http connections. Minimizing them is recommended. – Rafael Sanches Feb 16 at 19:03
feedback

One of the things I would suggest is to have two separate stylesheets: One with your regular style definitions and another one that contains your images in base64 encoding.

You have to include the base stylesheet before the image stylesheet of course.

This way you will assure that you're regular stylesheet is downloaded and applied as soon as possible to the document, yet at the same time you profit from reduced http-requests and other benefits data-uris give you.

link|improve this answer
feedback

In my case it allows me to apply a CSS stylesheet without worrying about copying associated images, since they're already embedded inside.

link|improve this answer
feedback

I disagree with the recommendation to create separate CSS files for non-editorial images.

Assuming the images are for UI purposes, it's presentation layer styling, and as mentioned above, if you're doing mobile UI's its definitely a good idea to keep all styling in a single file so it can be cached once.

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.