I want to create a drop-down menu with the css box-shadow tag around it, and I have some content using flash, the problem is when the drop-down menu appears and has a flash drive behind it, box-shadow does not appear. in fact, the shadow box falls over the flash player
I simplify the structure 
I am using Firefox 17.0.1, chrome 23.0.1271.97 and flash player 11.5.502.135
Style
.test { position:absolute; z-index: 100; left:50%; top:30px; border:3px solid blue;width:200px; height:200px; background:gray; box-shadow:50px 50px 130px #000} #flash{ position:absolute; left:50%; z-index:-100}
HTML structure
<div class="test"></div> <div id="flash"> <object width="100%" height="400" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <param value="28bc2_2.swf" name="SRC"> <embed width="100%" height="400" src="28bc2_2.swf"> </object> </div>
Does anyone know what is happening and the solution, thanks for the help :)
source share