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 web page sits in a DIV that is 960px wide, I center this DIV in the middle of the page by using the code:

html,body{background: url(images/INF_pageBg.gif) center top repeat-y #777777;text-align:center;}
#container{background-color:#ffffff;width:960px;text-align:left;margin:0 auto 0 auto;}

I need the background image of the html/body to tile down the middle of the page, which it does, however if the viewable pane in the browser is an odd number of pixels width then the centered background and centered DIV don't align together.

This is only happening in FF.

Does anybody know of a workaround?

share|improve this question

6 Answers

up vote 3 down vote accepted

Yeah, it's known issue. Unfortunately you only can fix div and image width, or use script to dynamically change stye.backgroundPosition property. Another trick is to put expression to the CSS class definition.

share|improve this answer
FF @ fault? Damn... hate when my buddy fails me. – Mark May 9 '10 at 7:45

I found that by making the background image on odd number of pixels wide, the problem goes away for Firefox.

Setting padding:0px 0px 0px 1px; fixes the problem for IE.

Carlo Capocasa, Travian Games

share|improve this answer

The (most) common problem is that your background image has an odd number while your container is an even number. I have wrote an article in my best Engrish about where I also explain how the browser positioned your picture. I hope this will explain your question.

check out here

share|improve this answer

I was able to resolve this with jQuery:

$(document).ready(function(){
 $('body').css({
  'margin-left': $(document).width()%2
 });
});
share|improve this answer

I am not that good with CSS, but you could use some javascript to see if its an odd number and then resize/move if it is.

share|improve this answer

I had the same problem.

To get the background centered, you need to have a background-image wider than the viewport. Try to use a background 2500px wide. It will force the browser to center the part of image that is viewable.

Let me know if it works for you.

share|improve this answer
This is not the problem. The problem is that each browser has a different way of rounding the viewport width to an integer. Some browsers use ceiling (next highest number) or floor (number without fraction). – rxgx Jul 11 '12 at 21:44

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.