私はでコードを書いていますASP.NET
。
IEではクリック可能ですがFFやGoogleChromeではクリックできないボタンがあります。
その理由は、そのposition: absoulute
OR position:fixed
がコードであるという事実にあることを発見しました。
<div style="padding-top:50px";>
<div id="divInfoBox" runat="server" style="padding-top:5px; height:250px;">
<div style="position:fixed; padding-left:-5px; ">
<asp:ImageButton CssClass="attachmentImageButton" ID="btnAttachment" runat="server" Visible="false"
ImageUrl="~/Style/images/attachment.png" onclick="btnAttachment_Click" />
</div>
</div>
</div>
すべてのブラウザでクリック可能にする方法は?