JSFiddle - React, Tailwind, and code Playground

by mowglisanu

HTML

<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>

CSS

.required >:first-child:before {
    content : "* ";
    color   : red;
}