我有一个奇怪的问题。我有一个“容器” div 封装了我的页面内容,在其中我还有另外三个 div 块。
容器内的三个 div 块恰好适合屏幕高度的 100%,但是当我将第三个 div 块推到超过 100% 标记时,整个“容器”div 向左移动了大约 20px。
这是我的 jfiddle:http: //jsfiddle.net/Y7y5R/
通过改变:
#secondaryContent{
position: absolute;
width: 100%;
top: 50%;
height: 50%;
background-color: red;
}
至
#secondaryContent{
position: absolute;
width: 100%;
top: 60%;
height: 50%;
background-color: red;
}
你会看到我要解释的。我只是在寻找为什么会发生这种情况的解释。