Quick query about CSS: I have a sprite sheet that I'm trying to utilize from two different classes. The CSS code I am using is as follows:
.buttons, .expand:before {
background-image: url('images/spriteSheet2.png');
}
Later on, I adjust the background positions as necessary. Will this result in one or two HTTP requests? I want the sprite sheet to load only once, but I'm uncertain if this is the correct approach.