z-index を使用して階層化された div を作成しようとしていますが、レイヤーの 1 つにフロープレーヤーが含まれている必要があります。レイヤーが適切に作成されたら、プログラムのロジックに基づいて div の z-index 値を更新します。次のコードは Chrome では機能しますが、Firefox と IE では機能しません。
問題: IE および firefox の div で、flowplayer が非表示になりません。
<div id="dvd_supplement" style="height:200px;width:300px;">
<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<div style="z-index:11;position:relative;top:0px;">
<a id="player"
href="barsandtone.flv"
style="width:300px;height:200px"
>
</a>
</div>
<div style="z-index:2;position:relative;top:-200px;">
<img id="player_laptop_screen" src="images/laptop_screen.jpg" width="300px" height="200px"/>
</div>
<div style="z-index:3;position:relative;top:-400px;">
<img id="player_img" src="images/blank_screen.jpg" width="300px" height="200px"/>
</div>
</div>