0

Please take a look here: http://woddles.co.nz/drillco/

If you switch between the Homepage and the Projects page, you will notice the Page shifts slightly to the left. I'm unsure what attribute is causing this to happen, as the Homepage and About Us page are fine.

I'm sure this is probably a bug with using a specific attribute incorrectly, but I could never work it out.

4

2 回答 2

4

它只是出现的滚动条。

如果它真的困扰你,你可以让滚动条始终可见:

html {
   overflow-x: auto;
   overflow-y: scroll;
}

演示

但是,以我的拙见,这是一种非常自然的行为,几乎不引人注意。我不建议使用这些技巧。

于 2013-10-20T22:12:38.200 回答
0

这里看起来不错,但它可能是小屏幕上的滚动条。一页是否有滚动条而另一页没有在您使用的屏幕上?

您可以尝试使用 CSS 在每个页面上强制滚动条。

html { height: 100%; margin-bottom: 1px; }
于 2013-10-20T22:12:58.927 回答