Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

My HTML code works fine in IE8 but pages "jump" slightly to the right and left in Firefox

  • 6 个回答
  • 13 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I have created a website that looks and works fine in IE8 but in Firefox some of the pages jump a couple of pixels to the left. I have tried to debug it but cannot find any coding errors.

I have created a website that looks and works fine in IE8 but in Firefox some of the pages jump a couple of pixels to the left. I have tried to debug it but cannot find any coding errors.

被采纳的解决方案

You can force a vertical scroll bar with body {overflow-y: scroll}

定位到答案原位置 👍 2

所有回复 (6)

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.

more options

Be sure to add a link to that website in your post.
Firefox uses a default margin of 8px in the body. If you do not want that margin then add this style rule:

body {margin: 0px}

There may be other difference depending on the DOCTYPE that you specify (or omit).

more options

After hours and hours of removing code and content, I finally figured out why it is jumping from one page to another (and it's a bit embarrassing to admit): the %!&#? scroll bar's absence or presence shifts the page that many pixels to the right and left!!! This doesn't happen in IE because it is always there, whether used or not. Does anyone know how to "fix" this "problem" in Firefox? I think it looks really clunky for it to jump left and right depending on which page on my site you click on.

more options

选择的解决方案

You can force a vertical scroll bar with body {overflow-y: scroll}

more options

Thanks for the tip cor-el. That solved my problem! Looks much better now.

more options

You're welcome