问题得到解决:我指定了right: 0px
而不是top: 0px
......
我在Firefox(6.0.2),Chromium(12.0.742.112)和Konqueror(4.6.2)中都遇到了CSS'position: fixed;
的问题。请考虑以下示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<body>
<div style="background: grey; position: fixed; left: 0px; right: 0px; width: 100%; height: 100%;">
...
</div>
<div id="page2" style="margin: 50px;">
test
</div>
</body>
</html>
我的目标是第一个<div>
隐藏整个视口,但在所有三个浏览器中,它都不会遮挡最顶端的50 + x像素 - 这正好是第二个{{1}的上边距}}。任何人都可以告诉我问题是什么以及如何在没有肮脏的黑客的情况下解决这个问题?
请注意,在第一个和第二个<div>
之间插入任何文字可以减少问题,因为只有最顶层的x picel不会被遮挡,也可以通过将<div>
添加到{{}}来删除{1}}标记。可以看到上面示例代码的结果以及Konqueror中两个style="margin: 0px;"
之间添加了“x”的版本
这里:
提前多多感谢!
答案 0 :(得分:1)
您尚未在固定位置div上指定top: 0
。为什么不呢?