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.

i am using div#wrapper margin: 0 auto to center the div, there is scroll bar on this page however when it transition to second page where there is no scroll bar, it appears as jumpy because there is no scroll bar i guess.

<body>
<div id="wrap">
<div id="wrapper">
....

#wrapper { width: 970px; margin: 0 auto; } 

what would be the best solution for this not to make it jumpy?

share|improve this question
the best solution is NOT to center your wrapper. Scroll bar is part of your browser, and by adding it you re-size your HTML rendering area. – Maksim Vi. Sep 20 '11 at 22:50

1 Answer

I've run into this a few times, the best thing I've found is to force a y scrolllbar on every page, even if it isn't needed using html {overflow-y:scroll;} in your style sheet.

This will mean there is always a right scroll bar on the page, but it will be eneabled/disabled as needed, and prevent the jump.

share|improve this answer

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.