I have few CSS images which use external images which cant be sprited cause they are repeated ones… using inline images within my CSS will reduce number of requests by 3 or 4 (and 6 more as im adding more css images)
Unfortunately IE7 and below doesnt support it. So i plan on serving regular css to ie7 and below and use the css with inline images for other browsers using conditional comments…
Any problems I should take note of in advance before i start?
since only ~27% of my traffic uses internet explorer 7 and below, I should see a vase improvement…
That’s one way to do it but you’d be sending down twice as much image data (though it should compress well since it’s the same image twice). Another way would be to do it dynamically based on the user agent.