i have a div with opacity set to 0.8 and inside that div i have an iframe. i don't want the iframe to be transparent at all (i.e. opacity 1.0).
markup:
<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);
}
i tried resetting the opacity to 1.0 but it doesn't work!, i would appreciate any help...
also, is this the best method to set the opacity (cross-browser compatibility wise)