gpt4 book ai didi

CSS- Mobile Safari 和 Chrome 中的密码字段高度

转载 作者:太空宇宙 更新时间:2023-11-04 15:10:04 25 4
gpt4 key购买 nike

即使我将 style="height:22px"直接应用于这两个元素,我仍然遇到密码字段的高度与其上方文本字段的高度不同的问题。

当前的 HTML:

  <h2>Username 
<label>
<input name="email" type="text" id="email" style="height:22px" />
</label>
</h2>
<h2>Password
<label>
<input name="password" type="password" id="password"style="height:22px" />
</label>
</h2>

当前的 CSS:

#logonForm input[type=text], #logonForm input[type=password] { 
font-size:18px;
border-radius:8px;
padding-left:10px;
height:22px;
width:364px;
}

这呈现(有或没有 style 属性)为

screenshot

如何使它呈现相同的高度,为什么会出现这种情况?

最佳答案

您可能必须为所有边添加显式填充,而不仅仅是向左填充:

#logonForm input[type=text], #logonForm input[type=password] { 
font-size:18px;
border-radius:8px;
padding:0 0 0 10px;
height:22px;
width:364px;
}

关于CSS- Mobile Safari 和 Chrome 中的密码字段高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15420682/

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