Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
8  
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
4  
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
2  
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 '12 at 17:44
1  
@DimitarChristoff: I've been a fan of embedding small icons with base64 because of its relative ease (when comparing with aggressive spriting) and was happy to accept the size overhead. Thanks for pointing out that it's not always the case (i.e. gzipped base64 embed may be better in terms of absolute asset size as well) – o.v. Nov 10 '12 at 1:54
show 6 more comments

7 Answers

up vote 66 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:

share|improve this answer
5  
webcodertools.com/imagetobase64converter allows to upload a file and directly outputs CSS code. – simon04 Oct 24 '11 at 19:50
No upload, drag and drop: bennedich.github.com/web-playground/experiments/… – bennedich Oct 27 '12 at 3:20
here is a nice option that I tend to use to convert images to base64: duri.me – Chris Andersson Nov 29 '12 at 9:00
Another I found with source code. grmlin.github.com/bacss64 – BC. Feb 20 at 16:17

"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/

share|improve this answer

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).

share|improve this answer
10  
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
3  
you should have NO classes on the elements that describe how material is presented - those classes should be well-named and semantic (this is not always possible, but good to shoot for) If multiple elements use the same image, and you would like to encode that image in the CSS, just leave the image out of the declarations, and use a later css rule to declare and embed the image for multiple selectors/classes. – Adam Tolley Oct 28 '12 at 23:08
If you're shooting for semantic classes and also want the image data just once, you can have a separate style which lists all the relevant selectors, and then offsets defined in per-selector styles. Of course, for a very small image in a lot of places, the selector list might be bigger than the data... – Leo Apr 25 at 12:09

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.

share|improve this answer

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

share|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 '12 at 9:51
1  
1  
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 '12 at 19:03
despite w3 results, in some test I did the size of images increased by ~25% :( – Fabrizio Calderan Sep 28 '12 at 13:13
1  
I guess it can raise up to 33% if it's just impossible to zip it. – Léon Pelletier Dec 8 '12 at 9:29

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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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