在Firefox安裝Macromedia Flash plugin之後,上網時某些網頁的下拉選單被Flash遮蓋住,請問有何辦法解決?
这样想看就看,不想看就忽略掉
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;
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.
装个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.