怎么样让弹出窗口显示在最上层?
有 个主页有3个fram.有个弹出窗口,它实时更新后台数据。弹出的时候被FRAM挡住了,需要放在最上层。
弹出窗口已经做好了。有用到
<asp:scriptmanager id="scriptmanager1" runat="server">
            <services>
                <asp:servicereference path="~/fant/SY/messager/InboxService.asmx" />
            </services>
        </asp:scriptmanager>
CSS都设置了
 bottom: 0px;
 right: 0px;
 z-index:9000;
 position:absolute;还是无效。
该怎么做?
------解决方案-------------------- bottom改成top吧