How can I format 3 words in a dropdownlist option so they are aligned properly? eg.
<option value="1">ABCDE - ALPHA</option
<option value="2">1234 - NUMERIC</option>
<option value="3">ABC123 - ALPHANUMERIC</option>
I would like the output to be
ABCDE - ALPHA
1234 - NUMERIC
ABC123 - ALPHANUMERIC
rather than
ABCDE - ALPHA
1234 - NUMERIC
ABC123 - ALPHANUMERIC
Is there a way to achieve this formatting?
Thank you in advance for any assistance provided