我在某些元素上遇到了定位问题,在对其进行检查后,IE8 Developer工具向我显示了这一点:
现在,我很确定我的问题是12偏移量,但是如何删除它?我找不到任何提及CSS偏移属性的内容。除了保证金,我们还需要抵消吗?
这是产生该代码的代码:
<div id="wahoo" style="border: solid 1px black; height:100px;">
<asp:TextBox ID="inputBox" runat="server" />
<input id="btnDropDown" type="button" style="width:26px; height:26px; background-position: center center; border-left-color: buttonface; background-image: url(Images/WebResource.gif); border-bottom-color: buttonface; border-top-color: buttonface; background-repeat: no-repeat; border-right-color: buttonface;" tabindex="99" />
<div id="ListboxWrapper" style="display:none; position:absolute; onfocusout="this.style.display = 'none'"">
<asp:ListBox ID="lstBoxCompany" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lstBoxCompany_SelectedIndexChanged" style="z-index: 100;" Width="300px" />
</div>
</div>
具有偏移量的元素是 inputBox
left
和top
属性。