我将高度:40px和行高:40px设置为输入字段。它适用于所有浏览器,除了chrome。 IE7和IE8无法正常使用line-height属性。所以我设定了这个专业。 参考下图。
HTML:
Login :
<input type="text" class="inputtxt" />
CSS:
.inputtxt {
height:40px;
width:200px;
line-height:40px;
}
答案 0 :(得分:2)
我建议使用padding而不是line-height。
input {
width:200px;
height:20px;
padding:10px 5px;
}