我有一个面板:
<asp:Panel ID="pnl_addtofav" runat="server" CssClass="pop-up-sprite" >
<asp:ImageButton ID="btn_closefav" runat="server" ForeColor="Transparent" CommandName="HideFav" CssClass="close" />
</asp:Panel>
用CSS:
.pop-up-sprite {
background-attachment: scroll;
background-clip: border-box;
background-image: url("some url");
background-origin: padding-box;
background-position: 0 0;
background-repeat: repeat;
background-size: auto auto;
height: 100%;
width: 100%;
left: 0;
position: fixed;
top: 0;
z-index: 500;
}
在某些移动设备上,我无法单击按钮btn_closefav
。我单击此按钮,没有任何反应。问题是position:fixed
!如果我position:fixed
用position:absolute
作品代替!
但我需要使用 position fixed 将 div 放置在整个页面上。
为什么?