<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 >
以下為頁面截圖:
摘自 懶人小何