我有一个不透明度设置为 0.8 的 div,在该 div 里面我有一个 iframe。我根本不希望 iframe 是透明的(即 opacity 1.0)。
标记:
<div id="container">
some text and images
<iframe width="500" height="370" src="http://www.youtube.com/embed/'+videoId+'" frameborder="0" allowfullscreen></iframe>
</div>
CSS:
#container{
opacity: 0.8;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
我尝试将不透明度重置为 1.0,但它不起作用!,我将不胜感激任何帮助...
另外,这是设置不透明度的最佳方法吗(跨浏览器兼容性)