首页 > 网站 > WEB开发 > 正文

通过样式调整input 中password text默认长度

2024-04-27 14:24:53
字体:
来源:转载
供稿:网友
通过样式调整input 中passWord text默认长度

原文出处

<input >标签内的type分别为password和text时其默认长度和宽度不一致,而在做登陆框时往往需要将它们的长度和宽度设置一致。如下的方法可以通过CSS控制使其一致:

<html> <head></head> <body> 调整前:</br> 用户名:<input type="text" id="tex"></br> 密  码:<input type="password"    id="pass"></br></br> 调整后:</br> 用户名:<input type="text"    style="width:180px;height:20px;" id="tex"></br> 密  码:<input type="password"    style="width:180px;height:20px;" id="pass"> </body> </html> 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表