我正在尝试在标签前添加一个星号符号,使其看起来像 *Country 基于具有“必需”类的父节点
<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;
}