1

这个问题已多次发布,但我找不到一个可以帮助我找到解决方案的讨论。移动后,我怎样才能摆脱底部的这个额外空间#AnotherDiv?我也尝试了其他设置,例如使用外部 div(宽度 100%)并将 and 放置在#content内部#AnotherDiv,但之后#AnotherDiv根本不会留在底部(我使用了position absoluteand bottom0)。我想要的只是#AnotherDiv在页脚 div 的底部对齐。

http://jsfiddle.net/bW7h2/10/

#AnotherDiv {
    position: relative;
    bottom: 200px;
    width: 100%;
    height: 200px;
    z-index: 1;
    background-color: #00FF00;
}
4

2 回答 2

0

我从您的评论中了解到您想这样做吗?

#AnotherDiv {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 101;
    background-color: #00FF00;
}
于 2013-04-21T16:16:32.667 回答
0

使用margin-top: -200px;而不是bottom:200px;您的#AnotherDiv元素。而且您的 CSS
中缺少一个:;

LIVE DEMO

#homepage{
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0;
}
/* Header, Body, Footer */
#content {
    position: relative;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    background-color: #0000FF;
    z-index: 1;        /* 1 IS QUITE ENOUGH, SET '0' FOR #AnotherDiv */
}

#data {
    position: relative;
    width: 100%;
    min-height: 500px;
}
#footer {
    height: 200px;
    width: 100%;  /* MISSING ; */
    position: relative;
    background-color: gold;
}

#AnotherDiv {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 0;
    margin-top: -200px;  /* INSTEAD OF bottom:200px; */
    background-color: #00FF00;
}
于 2013-04-21T16:23:33.777 回答