我有一个小组:
<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
作品!
但我需要使用固定位置将div放在整个页面上。
为什么?