IE7与Flash内容的z-index问题

Lor*_*nzo 3 css flash z-index internet-explorer-7

我有一个问题,IE7中的Flash内容总是在菜单项上

我有如下结构:

<div id='skyscraper_flash'>
<!--this id skyscraper_flash is position absolute-->
  <object>
   <!--this is wmode transparent-->
  </object>
</div>

<div id='menu'>
<!--this id menu is also position absolute-->
  <ul>
    <li>foo</li>
    <li>bar</li>
  </ul>
</div>
Run Code Online (Sandbox Code Playgroud)

现在,菜单的最后一项打开,它显示在Flash内容后面.摩天大楼位于页面内容的右侧.我该怎么看?

rah*_*hul 5

你可以在object标签内部给出它

<param name="wmode" value="transparent">
Run Code Online (Sandbox Code Playgroud)