gpt4 book ai didi

html - 中心提交按钮与表单框一致

转载 作者:行者123 更新时间:2023-11-28 18:37:26 26 4
gpt4 key购买 nike

我曾尝试将我的提交按钮与表单的一个条目对齐,但没有成功。我只是希望提交按钮稍微位于表单框的右侧和中心。目前,它位于框的右侧但稍微靠近底部。

我已经尝试了所有不同的响应来回答有关对齐提交按钮( float 、边距等)的类似问题,但我终究找不到正确的选择!

我的 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;

}

非常感谢任何帮助!!谢谢。

最佳答案

像这样将每个输入包装在一个 div 中

<div class="vertAlign">
<input name="query" id="querybox" style="width:400px;height:40px;font-size:26px;border-radius:15px;border=0;"></input>
</div>

<div class="vertAlign">
<input type="button" value="Search" id="search" style="width:100px;height=40px;font-size=20px;"/>
</div>​

然后应用这个css

.vertAlign{
display: inline-block;
vertical-align:middle;
}​

这是一个fiddle结果

注意:您所有的 CSS 都应该保持原样。我在我的 fiddle 中省略了它,以便解决方案更具可读性。

关于html - 中心提交按钮与表单框一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12359068/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com