我试图让按钮显示在文本框的右侧,但它显示在IE7的底部。
<div style="margin-top: 12px; border: 1px red solid" >
<asp:TextBox ID="txtSearh" name="txtSearch" runat="server" ></asp:TextBox>
<button id="Search" accesskey="s" type="submit" runat="server" onserverclick="Search_Click" style="display: inline;float: left">
<span><u>S</u>earch</span></button>
</div>
答案 0 :(得分:2)
从<button>
style="display: inline;float: left"
默认情况下,<button>
是内联元素,因此您不需要display:inline
,float:left
就是将按钮换行到下一行。