我有一个将 div 放在 iframe 顶部的代码,它可以工作。但是,当我将 iframe 的 src 设置为 youtube/vimeo 播放器时,在 chrome 中 iframe 保持在顶部(它在 safari 和 FF 中运行良好)。
有没有办法解决这个问题?CSS:
#over{
float: left;
margin-top: -293px;
margin-left: 185px;
background-color: #FF0000;
height: 30px;
}
iframe{
float: left;
width: 100%;
height: 550px;
}
HTML:
<div>
<iframe src="http://player.vimeo.com/video/67124108?title=0&byline=0&portrait=0&color=ffffff&wmode=transparent">
You don't have iframe support, unfortunately
</iframe>
<div id="over">I'm over the iframe</div>
</div>
[可以在这里的工作中看到:http: //jsfiddle.net/QPXAT/ ]