Is there a way to align a portion of the option's text to the right?
Below, you will see a select element with names on the left and "(vertical)" on the right. I want to move "(vertical)" to the right side. Is it possible to achieve this?
https://i.sstatic.net/9MRh9.png
<select name="IM_COD_CONDOMINIO" id="IM_COD_CONDOMINIO" class="form-control ">
<option value="add">Insert new</option>
<option value="">Select</option>
<option value="822">2000 (vertical)</option>
<option value="455">Abaete (vertical)</option>
<option value="456">Acapulco (vertical)</option>
...
<option value="467">Alexandre (vertical)</option>
</select>
UPDATE: This question is unique because it pertains to aligning specific parts of the text in the options rather than aligning the entire code or styling the select element.