我徒劳地尝试将我的提交按钮与表单的一个条目对齐。我只是希望提交按钮稍微位于表单框的右侧和中心。目前,它在右边,但在盒子的底部一点点。
我已经尝试了所有不同的响应来回答有关对齐提交按钮(浮动、边距等)的类似查询,但对于我的一生,我找不到正确的选择!
我的 HTML 如下所示:
<input name="query" id="querybox" style="width:400px;height:40px;font-size:26px;border-radius:15px;border=0;">
</input>
<input type="button" value="Search" id="search" style="width:100px;height=40px;font-size=20px;"/>
用于设置按钮样式的 CSS 如下所示:
#search {
cursor:pointer;
width:70px;
height: 31px;
line-height:0;
font-size:0;
text-indent:-999px;
color: transparent;
background: url(ico-search.png) no-repeat #151B54 center;
border: 1px solid #FFFFFF;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}
#submit:hover {
background: url(ico-search.png) no-repeat center #151B54;
border: 1px solid #FFFFFF;
}
非常感谢任何帮助!谢谢。