I used a css sprite to display backgrounds on a fixed width design. Im changing to fluid layout, but because of the background positions the background image goes wonky when the browser resizes.

Is it possible to use a css sprite with a fluid grid background, where it resizes eith the layout?

I need layout compatible with ie 7 and 8 with other latest browsers

link|improve this question

64% accept rate
In what way does the image go wonky? – Brian Maltzan Feb 6 at 21:06
feedback

4 Answers

Adding to what @brianMaltzan wrote about @media you can use different resolution groups to have a different stylesheet

<link rel='stylesheet' media='(max-width: 700px)' href='css/small.css' />
<link rel='stylesheet' media='(min-width: 701px) and (max-width: 1024px)' href='css/medium.css' />
<link rel='stylesheet' media='(min-width: 1025px)' href='css/large.css' />

or block of css code for the style of your page:

@media (max-width: 860px) {
    body {
         width: 600px;
    }
}
@media (min-width: 861px) and (max-width: 1024px) {
    body {
         width: 800px;
    }
}
@media (min-width: 1025px) {
    body {
         width: 1000px;
    }
}

I would suggest to use a few fixed sizes which will alter with each stylesheet, rather than percentages (if you are using them). Can you show us an live example of the sprite in place with your fluid layout so that we can see the issue?

link|improve this answer
Yes, this is what I was thinking, and then adding multiple versions of your image, within the sprite. When you resize past the threshold, the view will redraw. For the image display issue, maybe you need overflow: hidden? – Brian Maltzan Feb 6 at 21:51
feedback

I have not tried this, but there are people doing this with CSS Clip.

http://bowdenweb.com/wp/2011/08/making-responsive-accessible-high-dpi-css-sprites.html

http://chiefalchemist.com/responsive-css-sprites-proof-of-concept-v0-1-0/

link|improve this answer
Clip is supported by ie7+8, but has an alternate syntax, according to this: reference.sitepoint.com/css/clip#compatibilitysection – Brian Maltzan Feb 6 at 21:45
feedback

@media may work for you. Not sure about ie7&8 though.

link|improve this answer
Could you explain more about how @media can help when we have fixed size sprite png – Jitendra Vyas Feb 5 at 18:24
feedback

No, that's not possible. The recommended solution is to use the sprite map in an inline image and have that element's height and width set in your CSS. Here's a link explaining how to do this. This allows your images to resize with the layout.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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