當我們進行網站開發時,通常需要一個用戶注冊的功能。而這樣的功能一般都需要一個注冊頁面,那么如何通過html和css來完成呢?
<!--html代碼--> <form action="submit.php"> <label>用戶名:</label> <input type="text" name="username"> <br><br> <label>密碼:</label> <input type="password" name="password"> <br><br> <label>確認密碼:</label> <input type="password" name="confirm_password"> <br><br> <label>郵箱:</label> <input type="email" name="email"> <br><br> <input type="submit" value="注冊"> </form>
上面的代碼是一個基本的注冊表單,我們使用form標簽定義了一個表單,其中包含了用戶名、密碼、確認密碼以及郵箱的輸入框。我們使用label標簽來定義表單標簽的名稱,例如“用戶名”、“密碼”等等。同時,通過input標簽來定義表單輸入框的類型,例如text、password、email等等。
/*css代碼*/ form { width: 400px; margin: 0 auto; } label { display: block; font-size: 16px; margin-bottom: 10px; } input[type="text"], input[type="password"], input[type="email"] { width: 100%; padding: 10px; font-size: 16px; margin-bottom: 20px; border: none; border-bottom: 2px solid #ccc; } input[type="submit"] { background-color: #4caf50; border: none; color: white; padding: 16px 32px; text-align: center; font-size: 16px; margin: 20px 0; cursor: pointer; border-radius: 5px; } input[type="submit"]:hover { background-color: #3e8e41; } input[type="submit"]:active { background-color: #3e8e41; transform: translateY(1px); }
上面的代碼中,我們使用了一些css屬性來美化我們的注冊表單。我們設置表單的寬度為400px,居中顯示。通過label標簽來定義標簽的樣式,input標簽定義輸入框的樣式。我們設置輸入框的寬度為100%、字體大小為16px、底部有一個2px的灰色邊框,并且底部有20px的margin。同樣的,我們對提交按鈕也進行了樣式的設置,讓它在hover和active狀態下的樣式不同。
上一篇jquery on 問題
下一篇注冊界面的css源碼