我要给错误消息只给选中元素( 或特定 id 或 name) 的白背景 。 我尝试过 :
select .error {
background-color: white;
}
这是选中的 html :
<div class="col-md-2">
<div class="form-select-group">
<label class="whiteFont" for="selectState">Select Branch:</label>
<select class="form-control" id="selectState" name="selectState">
<option value="" disabled selected>Select your Branch</option>
<option>Option A</option>
<option>Option B</option>
</select>
</div>
</div>