iframeの上にdivを配置するためのコードがありますが、これは機能します。ただし、iframe の src を youtube/vimeo プレーヤーに設定すると、クロムでは iframe が一番上に表示されたままになります (サファリと 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/ ]