ホームページ >ウェブフロントエンド >htmlチュートリアル >style_html/css_WEB-ITnose を通じて入力のパスワード テキストのデフォルトの長さを調整します
オリジナルソース
d5fd7aea971a85678ba271703566ebfd タグ内のタイプがそれぞれパスワードとテキストである場合、ログインボックスを作成する場合、長さと幅を次のように設定する必要があることがよくあります。一貫性のある。次のメソッドは、一貫性を保つために 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>