1

这是我正在使用的代码,但我不明白我哪里出错了。地图应显示在页眉和页脚之间的全高,但它似乎实际上延伸到页眉和页脚下方。这是一个问题,因为它掩盖了谷歌的版权信息和部分控件。

http://jsfiddle.net/GFcBU/9/

谁能告诉我我哪里出错了?

html, body, #container { height: 100%; }
body { z-index:1; position:relative; }
body > #wrapper { height:100%; margin:0 auto; width:100%; }
body > #wrapper > #header { z-index:3; position:relative; height:45px; background:#ccc; }
body > #wrapper > #container { z-index:2; position:relative; height:auto; min-height:100%; background:#eee; margin-top:-45px; padding-top:45px; padding-bottom:25px; box-sizing:border-box; margin-bottom:-25px; }
body > #wrapper > #footer { height:25px; background:#333; color:#fff; z-index:3; position:relative; }

.left {float: left;}
.right {float: right;}
4

1 回答 1

1

请尝试以下方法:

body > #wrapper > #container { 
  z-index:2; 
  position:absolute; 
  top: 45px; 
  bottom: 0; 
  height:auto; 
  background:#eee; 
  box-sizing:border-box; 
  margin-bottom: 25px; 
  width: 100%;
}

body > #wrapper > #footer { 
  height:25px; 
  background:#333; 
  color:#fff; 
  z-index:3; 
  position:absolute; 
  bottom: 0; 
  width: 100% 
}

这是 jFiddle:http: //jsfiddle.net/G3Pxy/

对于容器,我添加position: absolutetop: 45pxbottom: 0。当高度设置为自动时,它应该采用屏幕的剩余高度。margin-bottom: 25px您为页脚留出的空间。对于页脚,我只添加了width: 100%. 由于某种原因,页脚的宽度没有跨越屏幕的宽度,所以我不得不添加它。

于 2013-02-17T17:21:58.590 回答