vote up 0 vote down star

I have a website that is perfectely centered aligned. The CSS code works fine. The problem doesn't really have to do with CSS. I have headers for each page that perfectely match eachother.

However, when the content gets larger, Opera and FireFox show a scrollbar at the left so you can scroll to the content not on the screen. This makes my site jump a few pixels to the left. Thus the headers are not perfectely aligned anymore.

IE always has a scrollbar, so the site never jumps around in IE.

Does anyone know a JavaScript/CSS/HTML solution for this problem?

flag

8 Answers

vote up 7 vote down check

I use

html { overflow-y: scroll; }

To standardize the scrollbar behavior in IE and FF

link|flag
vote up 2 vote down

FWIW: I use

html { height: 101%; }

to force scrollbars to always appear in Firefox.

link|flag
vote up 0 vote down

Now there are actually two scrollbars, which is also a bit off.

link|flag
vote up 0 vote down

Well i don't see the problem with it but John's suggestion will work (I'd upmod but I'm out).

link|flag
vote up 0 vote down

http://www.brack.nl/

link|flag
vote up 0 vote down

Well you don't need the position: relative; - it should work fine without it.

I take it that div has to be 1000px wide? It would still be a lot easier to answer this with the actual website.

link|flag
vote up 0 vote down
   #middle 
   {    	
position: relative;
margin: 0px auto 0px auto;		
width: 1000px;	
max-width: 1000px;
}

is my centered DIV

link|flag
vote up 0 vote down

Are you aligning with percentage widths or fixed widths? I'm also guessing you're applying a background to the body - I've had this problem myself.

It'll be much easier to help you if you upload the page so we can see the source code however.

link|flag

Your Answer

Get an OpenID
or

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