I've already had a look through some posts and couldn't find what I was after. I'm designing something in PS at the moment and I can foresee an issue when it comes to coding the design into html+css.

Imagine my centre div, it's 960px. It's going to have a semi-transparent .png as a background. The design is “full width” so this div will be contained in a larger div, set to 100% width. This is all ok until I get to the background on this outer div. It's also going to have a .png running the full width of the page. Problem is: I don't want it running through the middle, as it will result in the middle have a double thickness to it, if that makes sense?!

Basically, I need a way to either run a div either side that is elastic, or someway of stopping the background from running across the centre 960px portion of the browser window.

I have NO idea how this can be achieved, apart from using JS to set widths, which I don’t really want to do.

Any ideas?

Ok, I’ve tried to get the basic issue here: http://jsfiddle.net/8Bznc/1/

link|improve this question

75% accept rate
Why do you need a transparent background? – RepWhoringPeeHaa Dec 10 '11 at 21:45
because the background behind all this is a texture that I want to partly show through layers stacked on top – Dan Dec 10 '11 at 21:53
feedback

2 Answers

You can just put a non-transparent background on the center div, so the other background doesn't show through.

See here: http://jsfiddle.net/9bnHD/

link|improve this answer
I’ve added a fiddle so you can see what I mean. – Dan Dec 10 '11 at 22:08
feedback

Apply the background-image only to the wrapping div.

Alternatively, if the center and sides need to have different images, give the center div a non-transparent background-color as well.

Also, you could fake it by using multiple background-images. Demo

Keep in mind this won't work in old versions of IE, but something as non-essential as background transparency can be excepted as graceful degradation.

link|improve this answer
I don’t think that will work. the outer div will have something like a 10px height strip that’s set to repeat-x so it will fill the full width of the page. The centre div (the 960 one) is going to have a different shape (a rectangle) that’s also semi transparent. The idea is the background on body will show through all of this. – Dan Dec 10 '11 at 21:55
I updated my answer. Demo – bookcasey Dec 11 '11 at 0:31
feedback

Your Answer

 
or
required, but never shown

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