Tagged Questions
CSS Sprites is a CSS technique to combine small images into one big image and then access them using the background-position property. It is used to save HTTP requests.
45
votes
17answers
9k views
Tools to make CSS sprites?
Are there any good tools to make css sprites?
IDEALLY I'd want to give it a directory of images and an existing .css file that refers to those images and have it create a big image optimized with all ...
17
votes
4answers
625 views
IE6: Background-Image Load Event
I am displaying a bunch of thumbnail images and the latency can be very high (over a VPN) so I send all the thumbnails in a single file (like a sprite) and set the CSS background-image and ...
12
votes
14answers
562 views
Is using the logo tag in sprites good or bad?
When building web pages, one of my colleagues displays any logo using the CSS background-image property, rather than embedding the image using an HTML <img> tag. The colleague reported it was to ...
11
votes
1answer
161 views
Firefox and Chrome stops displaying my sprite after 655 images
the problem
Hi, i'm working with sprites and got some interesting behavior of firefox and Chrome. When my sprite have 655 images or less, my sprite works fine. But when it goes furter (656 or more) ...
11
votes
5answers
2k views
Using sprites with IMG tag?
I understand how to use sprites, however, isn't a "src" attribute required for IMG tags? I could always use a SPAN or other tag and set the background/width/etc but it won't be semantically correct.
...
10
votes
4answers
987 views
CSS Sprites browser rendering
We all know that CSS sprite images are great to reduce the amount of requests and such, but what about the performance of the browser rendering the page with several elements using a big image as a ...
9
votes
2answers
539 views
How to convert shorthand CSS to longhand?
Is there any tool which can automatically convert shorthand css to longhand? I need this cause I want to use SmartSprites which does not work well with shorthand.
And prefably also a tool which does ...
9
votes
8answers
2k views
When is a CSS Sprite too large?
Is the main purpose of sprites to reduce http requests made to the server for graphical elements on a page? Or do you want to try and fit as many elements to the sprite as possible.
I guess what ...
9
votes
5answers
681 views
How do CSS sprites speed up a web site?
I'm trying to understand how CSS sprites improve performance on a site?
Why is the downloading of several small images slower than the download of a single image holding the smaller images if the ...
9
votes
4answers
1k views
Do I still need to pad images in a CSS Sprite?
In CSS Sprites you will often find padding between each image. I believe the idea is so that if the page is resized then one image won't bleed into another.
I think this depends on the different ...
8
votes
6answers
146 views
Why not sprite larger images that are page content?
The typical rule of thumb when it comes to using CSS sprites for images is that you should only do it for smaller images (like icons) and that actual image content should always be represented through ...
8
votes
3answers
2k views
How can I scale an image in a CSS sprite
In this article, http://css-tricks.com/css-sprites/, it talks about how can I crop off a smaller image from 1 bigger image. Can you please tell me if it is possible/how I can crop off a smaller image ...
8
votes
6answers
919 views
Is css-sprite a good technique?
is css-sprite good technique? I read about its pros at http://spriteme.org/ and have also I seen a lot of questions about css sprites here in stackoverflow.
What are its cons?
Will it work in all ...
7
votes
3answers
194 views
Are there limits to how tall/wide CSS Sprite-maps can be?
Let me start off by stating that I realize the arguments against doing CSS Sprites for large images. I even asked a question about why that could be considered a bad idea (and added an answer of my ...
7
votes
6answers
1k views
What are the advantages of using CSS Sprites in web applications?
I'm working on a website with reasonably heavy traffic and I'm looking into using a CSS sprite to reduce the number of image loads in its design.
Are there any advantages to using a CSS sprite ...
7
votes
6answers
20k views
jQuery toggle to change image
I have a list of divs with images in them:
<div class="wizard-img"><%= image_tag("sources/pix/nyt.png") %></div>
<div class="wizard-img"><%= ...
7
votes
4answers
4k views
How to concatenate icons into a single image with ImageMagick?
I want to use CSS sprites on a web site instead of separate image files, for a large collection of small icons that are all the same size. How can I concatenate (tile) them into one big image using ...
6
votes
2answers
735 views
Maximum image dimensions in a browser/CSS spec?
I want to display a page containing about 6000 tiny image thumbnails (40x40 each). To avoid having to make 6000 HTTP requests, I am exploring CSS sprites, i.e. concatenating all these thumbnails into ...
6
votes
2answers
201 views
Sprite Sheets for Web Development
I'm currently working on a new site. I'm just a few pages deep and they all use <img>s. I was thinking about it and decided to look into using a sprite sheet for all of the button images and ...
6
votes
3answers
1k views
How can I make a DIV behave like an IMG for use as a CSS sprite?
I have written code that automatically creates CSS sprites based on the IMG tags in a page and replaces them with DIV's with (what I thought was) appropriate CSS to position the sprite image as a ...
5
votes
6answers
125 views
Do CSS Sprite images have to have X amount of space between each item?
I am having a problem, for a while I have been trying to figure out how to resolve this issue. I will describe it very well below...
I am trying to use an image as a sprite image for an UL list. It ...
5
votes
3answers
392 views
Keep images from zooming with browser
I have a single image with buttons aligned vertically. I then am using css that specifies "background-position" to show the correct button based on the class of the button. The issue I am having, is ...
5
votes
2answers
376 views
CSS Sprites and repeating backgrounds
I'd like to keep all my small images in one sprite file, for example:
Now suppose I want to add a thin background image which is meant to repeat-x over 100% the width of an element:
Does this ...
5
votes
3answers
503 views
Is there an equivalent of spriting for SVG images in web pages?
SVG images aren’t bitmaps, so (unless I’m missing something) you can’t do spriting like you can with other images files used on web pages (see http://www.alistapart.com/articles/sprites).
But is ...
5
votes
1answer
3k views
CSS Sprite techniques, css background or img's clip
There are two image sprite techniques.
The "classic" version uses the background and the background-position css properties.
(as it's described here http://www.alistapart.com/articles/sprites)
The ...
5
votes
4answers
6k views
use CSS sprites for list (<li>) background image
Is it possible to use CSS sprites for the list background image? Normally, I render my sprites with CSS like this:
.sprite { background: url(sprite.png) no-repeat top left;}
.sprite-checkmark { ...
5
votes
2answers
736 views
Software/Plugin for css sprite generation
does anyone know if there exists any offline software or plugin(dreamweaver, etc) to generate a css sprite. That is: merging images and generating the css rules.
I know there is a post here: ...
4
votes
1answer
66 views
How to apply an active state to a CSS sprite?
I have created a css sprite of flags to use as image links to that country's version of the website I am working on.
The problem is that before, individual flag images were used and an active class ...
4
votes
3answers
372 views
Compass: generate Sprites, plus width / height on each images in the sprite
I'm using Compass (a CSS Framework) to generate sprite images.
It work, but compass generate only a background-position for each image.
Is it possible to get also the width and the height for each ...
4
votes
3answers
394 views
CSS Sprites - How to leave Hover button in depressed state
CSS Sprites (button) with three different states:
Standard
Hover
Pressed (active)
Currently "Standard", "Hover", and "Pressed" work. The issue is, "Pressed" only stays pressed as the mouse is ...
4
votes
4answers
350 views
css-sprites vs inline/javascript
I'm doing a website which displays lots of little icons (stars, flags, folders...)
Now I'm using the CSS sprite technique and it works great but it's hard to mantain.
I'm thinking on making a big ...
4
votes
2answers
415 views
How would one tile the repeating backgrounds on this sprite?
It appears Amazon uses (used) a sprite with static backgrounds as well as tiled, but they're mixed in which appears to be no structured position. Generally my understanding is if you want to repeat-x ...
4
votes
2answers
1k views
Rotate sprite javascript
I have a sprite animation, a small cannon rendered using a 3D app. I have exactly 360 frames for a 360 degree turn. Each image has a 100x100 pixel size.
So basically what I am trying todo is when I ...
4
votes
4answers
476 views
CSS Navigation Sprite - Odd Shapes (not square)
I usually have no problems with making CSS sprites, but this one has got me stumped...and I'm not sure how to solve it. Basically I have a navigation sprite that looks like this:
I'm using the ...
4
votes
6answers
252 views
Disable image over button
I have a transparent PNG that partially overlaps a button. The buttons becomes inactive where the image overlaps. Is there a way to turn the transparency "off" so the button is clickable behind it? Or ...
4
votes
2answers
674 views
Sprite height limitation for CSS images?
I'm making a sprite and its reaching about 4000px in height. Is there a general size for maximum sprite height that is used within the graphics design community?
4
votes
2answers
586 views
Generating CSS sprites for dynamic images
I have a webpage which contains about 20 - 50 dynamic images (images served from a non-static source). These images are served through a servlet based on the request URL. This results in a request ...
4
votes
3answers
7k views
Z-index problem in IE7 with jquery superfish menu plugin
I needed to modify jquery superfish menu plugin to accomodate using image for the menu.
Please have a look at this demo. http://www.okadadesign.no/vitaveritas/.
There are submenus under Om oss and ...
4
votes
3answers
357 views
Single image file to store all the little images on a page
In one of the recent Stackoverflow podcasts, Jeff talked about having a single image file having all of those tiny images that are all over a page and then cutting it with CSS so that all the images ...
4
votes
5answers
3k views
Extended css sprites not working with :hover?
I just encountered this article of an extention of css sprites that enables the spriting trick with foreground images . I tried to use the technique on :hover but it doesn't appear to work in IE and ...
3
votes
3answers
48 views
Is there way to repeat particular pixels in css sprite working
see the images in that both gradients are repeating , i want to repeat only the orange gradient. my css code: #header{background: url(images/background-spirit.png) repeat-x 0px -20px ;height: ...
3
votes
1answer
86 views
CSS Sprite in a fluid layout
I have a background image to be used for CSS sprite
Now the issue is I can only use fluid layout (only %, no px) and the % positioning creates an issue while resizing the browser (e.g. some portion ...
3
votes
4answers
200 views
How to use CSS sprites with textbox?
I'm trying to use CSS sprites in a text box.
The image dimensions are 200x50 pixels and i want to display only part of the image lets say from (25px,25px)(x,y cordinates) with height 30px and width ...
3
votes
3answers
166 views
CSS - Image sprites overusing
I have recently begun using image sprites and they are definately great for reducing http requests. Is there a point where it becomes bad practice?
Im thinking particularly where a lot of extra ...
3
votes
2answers
188 views
Border-radius bleeding
I want to give border-radius to a in which all the have an image has background, but the image keeps going outside the border-radius. Why is that?
3
votes
3answers
341 views
Size of CSS Sprite Base Image
Does it matter how long and wide an image is when using CSS sprites? I noticed the SO sprite image is one long image, with all the sprites on top of each other.
Would having the sprites grouped ...
3
votes
2answers
293 views
Android Web Browser Scaling Works More Effectively for Images than Sprites
I'm developing a mobile web application and I have a home screen with a number of icons on it, so I tried to use a sprite to serve all the images in one swoop.
I noticed, however, that the iphone4 ...
3
votes
1answer
130 views
Why should I use CSS3 buttons?
I built a website recently, and decided to create buttons that depress on click with CSS3, pretty cool.
But is there really a valid reason to use CSS3 over a sprite, as only the modern browsers show ...
3
votes
3answers
913 views
CSS Sprite generator for Ruby on Rails project
I'm currently working on a large, highly trafficked Ruby on Rails website and in order to get our page load times down, we are looking at spriting our background images. There seem to be a lot of ...
3
votes
4answers
504 views
Is there CSS sprites support in jQuery UI
I'm looking into using CSS sprites, but wouldn't like to invent the wheel.
Is there existing support in jQuery or jQuery UI? Or as an alternative, a well debugged jQuery plugin