Hello, I wonder if there is an alternative for sprites technique, this time for non css backgrounds. Let's say I want to use multiple images with <img> Code (markup): tag but I don't want multiple images for each source as I want to keep the http requests as low as possible. I'd like to refer to one single "sprite" image. I don't mind to use inline or external css to achieve this. But the question is: is this possible without using background positioning? I hope I made myself clear. Thank you, Marius
I've never thought about this, but now that you mention it, I suppose technically it can be done. Imagine you have a DIV with set width and height and overflow:hidden. Inside it you could place an IMG whose dimensions are bigger than the DIV, then you play around with the positioning of that IMG, revealing only the parts you want. Mind, I've just thought it up. It would probably work, but there might be complications.