我有一個谷歌地圖,有laiyng的內容塊,這是我所需要的。在谷歌地圖下的位置內容
我需要能夠在谷歌地圖下添加更多的內容..但我無法弄清楚如何讓進行的div容器坐在地圖下方。
我試着將位置設置爲靜態,但它不起作用?
下面是我的codepen: -
http://codepen.io/dyk3r5/pen/LRmWbq
HTML。
<div id="content">
<iframe id="gmap" width="600" height="450" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/?ie=UTF8&ll=55.886721,-4.33651&spn=0.011553,0.027466&z=15&output=embed"></iframe>
<div class="container overlap">
<h1>Content</h1>
</div>
</div>
<div class="moreContent">
<p>I would like to sit below the google map!</p>
<div>
CSS。
#gmap {
position:absolute;top:0;left:0;z-index:1;
}
.overlap{
position: relative;
z-index:2;
background: white;
height : 200px;
width : 200px;
margin-top: 100px;
}
.moreContent{
/* How doi position this container? */
}
這個div確實位於我的機器上Firefox和Chrome的地圖下方。 – Rob