up vote 2 down vote favorite
share [g+] share [fb]

I have a centered div layout. The left side of the div in the background should be white and the right side should be green. Both should extend to infinity.

I think it should be quite simple but I just don't get it right now. Any easy solution? Thank you!

-----------------------------------------------------
(div 1)     __________________________ 
           |(div 2)         |         |
           |                |         |
           |                |         |
<- white   |     white      |  green  |   green  ->
           |                |         |
           |                |         |
           |________________|_________|

------------------------------------------------------
link|improve this question

You might get some further ideas if you ask on doctype.com – Rowland Shaw Aug 14 '09 at 11:41
feedback

3 Answers

up vote 5 down vote accepted

Add a background image with the two colors to the outer div and allow the browser to scale it (instead of tiling it).

Each color should fill exactly 50% of the width of the image to make sure the colors will never leak on either side.

Maybe even position the image absolutely behind the inner div.

For ideas how to stretch the image, see this question: http://stackoverflow.com/questions/1277330/css-background-repeat

link|improve this answer
Thank you, works out pretty cool! Didn't even know you can stretch bg-images. – Christoph Aug 14 '09 at 12:32
feedback

You could have two divs on the outside, and then have one of your divs in each. Right-align and left-align respectively. Like so:

-----------------------------------------------------
(div)                       | (div)
           _________________|_________ 
           |(div)           |  (div)  |
           |                |         |
           |                |         |
<- white   |     white      |  green  |   green  ->
           |                |         |
           |                |         |
           |________________|_________|
                            |
------------------------------------------------------
link|improve this answer
But this only works if the line between the two outer divs is exactly at 50% of the screen (which it is not in my layout)? – Christoph Aug 14 '09 at 11:35
feedback

I'd put inside that div two other divs and give them the appropriate sizes and backgound colors

link|improve this answer
The centered div2 is already inside that other div1. It is centered by using margin:auto. I don't think I can put two other divs inside there? – Christoph Aug 14 '09 at 11:28
sure you can. you will need to add the two more divs or deal with a repeating background image that does the color change for you. – YetAnotherDeveloper Aug 14 '09 at 11:36
feedback

Your Answer

 
or
required, but never shown

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