gpt4 book ai didi

html - 谷歌地图占据整个高度

转载 作者:行者123 更新时间:2023-11-28 18:28:46 27 4
gpt4 key购买 nike

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

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;}

最佳答案

请尝试以下操作:

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%。出于某种原因,页脚的宽度没有跨越屏幕的宽度,所以我不得不添加它。

关于html - 谷歌地图占据整个高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14923080/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com