由于某种原因,input
文本框没有遵守我使用的明确高度。为什么会这样?我尝试使用 Firebug 查看代码中的差异,但它的发生是出于某种原因。在萤火虫中,它显示height
没有16px
解释。
css
#login_form input[type=text],
#login_form input[type=password]{
height:26px !important;
display:inline-block;
}
html
<form method="post" id="login_form" >
<input type="text" size="30">
<input type="password" size="30">
</form>
萤火虫截图