ラベルの前にアスタリスク記号を追加して、次のようにしようとしています。*「必須」クラスの親ノードに基づく国
<span id="Country" class="none required">
<label for="id_Country">Country</label>
<select name="Country[]" id="id_Country">
<option value="Paraguay">Paraguay</option>
<option value="Peru">Peru</option>
</select>
</span>
私は次のようなことを試みています:
.required:first-child:before {
content : "* ";
color : red;
}