Embeded video displayed over html
Site which I am developing has a menu with drop downs, wh开发者_高级运维ich is always on top and content is scrollable.
Some of content are embeded video from various sources, which appears over top navigation.
For youtube, we find solution by adding extra parameter:
<param name="wmode" value="opaque" />
which resolve this issue, but is it general solution or not?
It seems that adding attribute to embeded tag and this parameter helps :). So, I need to add following changes to fix issue:
<param name="wmode" value="opaque" />
<embed wmode="opaque" ... />
精彩评论