如何固定密码输入字段的大小?
我的 html 代码是
<tr>
<td>User ID:</td>
<td><input type="text" id="uid" size="20"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" id="pass" size="20"></td>
</tr>
<tr>
但问题是,密码文本框长度在 IE 中有所不同,意味着 uid
大小为 20
但 pass
大小大约17
。
my html code is
<tr>
<td>User ID:</td>
<td><input type="text" id="uid" size="20"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" id="pass" size="20"></td>
</tr>
<tr>
but the problem is, password textbox length is coming diffrent in IE, means uid
size is 20
but pass
size is around 17
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如,尝试使用
style="width:200px"
而不是以这种方式指定大小。或者你可以在 CSS 中创建一个类,如下所示:
并使用如下:
Try using
style="width:200px"
for example rather than specifying size that way.Or you can create a class in the CSS like this:
And use like this:
您可以使用
width: 150px;
(使用 CSS)修复它。在 CSS 文件中:
或在内联 CSS 中:
style="width: 150px;"
。编辑:烤:)。
You can fix it with
width: 150px;
(with CSS).In CSS file :
Or in inline CSS :
style="width: 150px;"
.Edit : Grilled :) .