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