[問] 某些網頁的下拉選單被Flash遮蓋住

在Firefox安裝Macromedia Flash plugin之後,上網時某些網頁的下拉選單被Flash遮蓋住,請問有何辦法解決?

評論查看選項

選擇你喜歡的顯示回應的模式,並點選「儲存設定」,以啟用你所做的改變。

装个flashblock的插件吧

这样想看就看,不想看就忽略掉

set z-index for the two Div

You need to put dropdown menu and flash into 2 different
and set z-index for menu:
z-index: 100;

and flash:
z-index: -100;

second post

Use CSS.

You need to put dropdown menu and flash into 2 different <div>
and set z-index for menu:
#dropdown_menu {
z-index: 100;
}
and flash:
#flash {
z-index: -100;
}

menu will always be on top of the flash.