我是HTML5新手,所以我可以獲得所有幫助。我有三個字段(名字,姓氏和出生日期),我試圖將它們排列在一起。我想將這些字段水平和垂直對齊。對齊HTML5表單元素
這裏是我的簡單的代碼至今:
<html>
<!DOCTYPE html>
<html>
<link href="styles.css" rel="stylesheet" type="text/css">
<body>
<form>
<label for="firstname">First Name:</label> <input name="firstname" type="text" size="50" autofocus><br>
<label for="lastname"><br>Last Name:</label> <input type="text" name="lastname" size="50" autofocus><br>
<label for="birthdate"><br>Birth Date:</label> <input type="date" name="bdate" size="50"><br>
<form> </body> </html>
這裏是CSS我:
input[type=text] {
border: 1px solid #D4E2F1;
}
input[type=date] {
border: 1px solid #D4E2F1;
}
input[type=color] {
border: 1px solid #D4E2F1;
}
我會,因爲我並不想顯示錶格數據不喜歡使用表格。我正在尋找一種有效且正確的方法來做到這一點。
您的幫助將不勝感激。
謝謝。 AJ
移除BR標籤,並把它們飄浮 – Hushme
你可以有標籤左浮動,並輸入正確的浮動您 –
應[瞭解如何使用標籤元素正確(HTTP://www.456bereastreet。 COM /存檔/ 200711/use_the_label_el ement_to_make_your_html_forms_accessible /)。如果'for'屬性與相關輸入的**'id' **不匹配,則無用。 – Quentin