height="100%"
我在使用和的页面上有一个全角谷歌地图width="100%"
。我想知道在它上面放一些 css div的东西。我读到使用负值(例如margin-top: -500px;
会起作用),它们确实有效,但是当我尝试为 div 的背景分配颜色时,它不会在地图上显示它,而是在地图下显示它,这不是我想要什么。有针对这个的解决方法吗?代码:
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?hl=en&ie=UTF8&ll=37.0625,-95.677068&spn=56.506174,79.013672&t=m&z=4&output=embed"></iframe>
<div class="content"> I want this text to be in a div box that has a black background. <br /> </div>
风格:
.content {
margin-top: -500px;
width: 390px;
background-color: black;
}