程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 通過樣式調整input 中password text默認長度

通過樣式調整input 中password text默認長度

編輯:關於JSP

<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 >
以下為頁面截圖:
\

摘自 懶人小何

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved