如果用戶沒有正確輸入字段,它將顯示錯誤消息class="ErrorInput"
和class="TextError"
。它不會覆蓋類
我在ErrorInput
類中遇到問題,當它在html標記中定義時 - 它不會覆蓋默認輸入類。
HTML:
<li>
<label>First Name</label>
<input type="text" value="" class="ErrorInput" name="firstname">
<div class="TextError">Please enter First Name</div>
</li>
<li>
<label>Second Name</label>
<input type="text" value="Gates" name="secondname">
</li>
CSS:
.FormStyle .ErrorInput {
border: #AD2930;
}
.FormStyle input[type=text], .FormStyle textarea {
padding: 3px;
display: inline-block;
width: 290px;
border: 1px solid #BDC7D8;
margin: 0;
font-size: 12px;
}
我不知道(也許這不是必須的),但是你缺少輸入標籤的結束標籤。 –