我有一个图像,中间有一个电视屏幕。选择图像作为背景后,我想在屏幕中间放置一个 YouTube 视频。当前的代码使它成为可能,但它不能在不同的浏览器上正常工作。请指导。谢谢
<div style="
position:relative;
width:100%;
height:100%;
background: url(img/backround2.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
">
<iframe style="position:absolute; margin-top:12.7%;margin-left:31%; width:41.1%; height:43%;" src="http://player.vimeo.com/video/VIDEO_ID?portrait=0&color=333" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>