即使使用相同的 css 文件,CSS 页面也不相等
这是我用作测试网站的网站: http://test.pafo.net/
我的问题是页面,即使它们是相等的,他们改变了位置。 如果您单击“Seite 2”,然后单击“Start”并继续单击它们,您将看到整个容器正在移动一点。
这些页面之间的唯一区别是 Seite 2 有更多示例文本,仅此而已。
这是什么原因造成的?我是否忘记了样式表中某处的属性?
This is the site i am using as a test site:
http://test.pafo.net/
My problem is that the pages, even thou they are equal, they change in position.
If you click on Seite 2 and then Start and keep clicking on them, you will see that the entire container is moving a little.
The only difference between those pages are that Seite 2 has more example text, nothing else.
Whats causing this? Did i forget an attribute in the stylesheet somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Seite 2 有一个滚动条。这会改变页面尺寸。由于您的内容居中,因此它似乎向左移动了垂直滚动条宽度的一半。
Seite 2 gets a scrollbar. That alters the page dimensions. Because your content is centered, it appears to move to the left half the width of the vertical scrollbar.
如果添加overflow:scroll;对于每个页面的样式表(例如在 body 元素上),即使不需要,也会始终呈现滚动条。
If you add overflow:scroll; to each page's stylesheet, (on the body element, for example) then a scrollbar will always be rendered even when it's not necessary.