2位置固定且绝对位于前0位

时间:2016-06-08 02:22:25

标签: css

我正在使用这个CSS:

html{
height:100%;
}

#Nav{
position:fixed;
top:0;
}

#Heading{
position:absolute;
top:0;
}

问题是当在HTML文件中使用DIV #Heading时,它会导致滚动条。

因此,使用“固定”定位和前0的两个DIV是不可能的吗?

当我删除第二个div(位置:绝对值)时,滚动条消失。

你能告诉我如何正确编码CSS吗?

非常感谢!

1 个答案:

答案 0 :(得分:0)

我发现了解决方案:

Make body have 100% of the browser height

html { height:100%; }
body { position:absolute; top:0; bottom:0; right:0; left:0; }

下一个问题是我想在站点底部添加一个位置为:absolute的DIV,但是这个DIV挂在页面中间。