私は必要なものであるlaiyng上にコンテンツのブロックを持つGoogleマップを持っています。Googleマップの下に位置するコンテンツ
私はGoogleマップの下にさらなるコンテンツを追加することができる必要があります。しかし、地図の下に座るために進行中の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? */
}
私のマシン上のFirefoxとChromeでは、そのdivはマップの下にあります。 – Rob