我在製作聯繫表格。現在顯然我會希望消息框大於電子郵件和主題輸入框。很顯然,我不能在css中輸入我的輸入,因爲它會更改所有框。我認爲指定消息框會像這樣指定輸入類型名稱?
input [type="text" name="message"] {
padding-bottom: 500px;
}
這顯然沒有工作......那麼我做錯了什麼?
HTML
<div id="contactContent">
<form>
<label>Email:</label><input type="text" name="email" />
<br>
<label>Subject:</label><input type="text" name="subject" />
<br>
<label>Message:</label><input type="text" name="message" />
</form>
</div>
CSS
#contactContent {
margin-top: 50px;
margin-left: 350px;
}
input {
border: none;
background-color: #CCCCCC;
margin-left: 20px;
margin-bottom: 5px;
padding-right: 250px;
padding-top: 13px;
padding-bottom: 13px;
}
label {
display:inline-block;
width:100px;
font-family:maven;
color: #FF6464;
font-size: 20px;
text-align: right;
}
input [type="text" name="message"] {
padding-bottom: 500px;
}
順便說一句,有一個''。 – cimmanon
您可以將css類添加到要修改的單個元素。但是,爲什麼你不使用textarea? –