我的搜索框有问题。我正在尝试使文本字段和按钮的高度相同,但我无法在所有浏览器中正确设置。这是代码:http ://codepen.io/anon/pen/ygCFz 。此方法在 Firefox 中运行良好,但在 Chrome 中不行。
那么,让文本字段和按钮具有相同高度和位置的最佳方法是什么?
谢谢!
//编辑:因为有人要求提供代码以供进一步参考,这里是:HTML
<form id="search" action="" method="get">
<input type="text" name="search" class="sfield" value="search and go"/>
<input type="submit" value="Search" class="sbutton"/>
</form>
CSS
input.sfield{
background-color:#fff;
border-color:#cecece;
border-style:solid;
border-width:1px 0 1px 1px;
font-size:0.9em;
line-height:1em;
height:26px;
}
input.sbutton{
background-color:#d91515;
height:inherit;
border:none;
color:#fff;
position:relative;
left:-6px;
bottom:-1px;
height:28px;
}