ASP.NET Menu Problem With .swf file

后端 未结 1 1157
无人及你
无人及你 2021-01-27 00:43

I have a drop down menu and a swf file on an asp.net page. When the menu drops down it is behind the swf file when it should appear in front.

相关标签:
1条回答
  • 2021-01-27 01:19
    1. Add the following parameter to the OBJECT tag:

      <param name="wmode" value="transparent">

    2. Add the following parameter to the EMBED tag:

      wmode="transparent"

    (Taken from the Adobe site)

    0 讨论(0)
提交回复
热议问题