文本框和asp.net中的按钮之间的差距

时间:2014-01-23 15:43:45

标签: html asp.net search

我在.aspx中创建搜索栏 代码

   <div align ="center"     
        style="border: thick none #008080; height: 597px; width: 670px; color: #000000; font-weight: bold; font-size: medium; font-family: Calibri;"><br /><br />        
        <center><div class="vpb_main_wrapper3" top="20" align="center" style="left: inherit"/><br clear="all"/>
        <h1 align="center" 

                style="color: #3399FF; font-weight: bolder; font-size: xx-large; font-family: 'Footlight MT Light';">
         ALL DOCUMENTS</h1><hr /><hr /><hr /><br /><br />
              <div>
          <asp:TextBox ID="searz" runat="server"  class="searches" type="text" CausesValidation="false"  placeholder="Search Documents"></asp:TextBox>
<%--     <input id="searz" class="searches" runat="server" type="text" CausesValidation="false"  placeholder="Type here"/>
--%>   <button id="submits" class="submit" runat="server"  type="submit"  onserverclick="Btn_submits_Click" CausesValidation="false" value="Search" validationgroup="123">Search</button>

    </div>

                <div class="CSSTableGenerator">
                <table border="0" width="100%" ..........

这是输出.. [pic

看起来文本框和按钮之间存在很多差距所以我如何删除文本框和按钮之间的差距

任何人都可以建议我如何解决这个问题? thankx

1 个答案:

答案 0 :(得分:0)

我通过删除这个来解决这个问题....

.searches, #submit
{
    float:left;
}