Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My background image won't align between the divs in this code - I have tried clearing them to no avail. Anyone know what's causing it, or how I can get it to work? CSS in html for convenience.

<div class="header" style="height:200px; background-image: url(bg.png); margin:-8px;">
<img src="logo.png" style="margin-left:auto; margin-right:auto;" />
</div>

<div style="text-align:center;">
    <div style="background-image: url(bg.png);background-position:center;  
display:inline-block; width:90px; border-bottom-left-radius: 20px;">Div 1</div>
    <div style="background-image: url(bg.png);background-position:center;  
display:inline-block; width:400px;margin:-4px;">Div 2</div>
    <div style="background-image: url(bg.png);background-position:center;  
display:inline-block; width:90px;border-bottom-right-radius: 20px;">Div 3</div>
</div> 

Here's a fiddle: http://jsfiddle.net/FphKk/

Image: http://i.imgur.com/YLVpI.png

share|improve this question

2 Answers

up vote 1 down vote accepted

Your margins are shifting the divs and therefore their backgrounds causing the stripe misalignment:

No margins: Fiddle here

Added back the inline-block and removed margins in addition to creating a container div with a set width - otherwise the stripes misalign based on window width.

Fiddle here

share|improve this answer
Oh nice one. Cheers Scott! – idb Oct 5 '12 at 3:11
Although how would I then align all of this to the centre of the page? And how can I make the header div span the entire page (100%)? Sorry I'm finding this very fiddly, whatever I change breaks something else. – idb Oct 5 '12 at 3:45
The overall design is very "hinky". You'd do better with a single background image and round the two bottom corners. Like this: jsfiddle.net/NotInUse/FphKk/6 but without knowing why you initially created things the way you did, I was adjusting your code, not reconfiguring it. – Scott Oct 5 '12 at 5:47

I can't see any background images, but as far as I can tell, the 2nd <div> wouldn't align between the 1st and 3rd <div>, because you used display:inline-block; instead of display:inline;.

http://jsfiddle.net/bcnobel/FphKk/1/

I honestly can't tell what this does to your background image's position, because you didn't set the full url to the image.
I will look into that as soon as you change the url's.

share|improve this answer
The image is at i.imgur.com/YLVpI.png – idb Oct 5 '12 at 2:49
Ok, so I added in the background images and separated the html and css (only because I think it's more clear that way). Also, is there a full url to logo.png? Is this what you wanted? jsfiddle.net/bcnobel/FphKk/2 – Gabi Barrientos Oct 5 '12 at 2:56
No unfortunately. Do you see the stripes of the background are still misaligned on the div 1, 2 and 3? I need to align them somehow. – idb Oct 5 '12 at 3:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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