我有一個不透明度設置爲0.8的div,並在該div我有一個iframe。 我不希望iframe透明(即不透明度爲1.0)。非透明iframe內透明div
標記:
<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,但它不工作!我希望得到任何幫助......
也,這是設置不透明度的最好方法(跨瀏覽器兼容性)
可能重複的[我不想從父母繼承兒童不透明度](http://stackoverflow.com/questions/5770341/i-do-not-want-to -inherit-child-opacity-from-the-parent-in-css) – Quentin