I have a group of option tags inside an HTML select tag. Each option displays an ID and a name. I want to align the names altogether. Here is my HTML code:
<select size="3">
  <option value='100'>100   John Doe</option>
  <option value='200'>200   Jane Doe</option>
  <option value='1001'>1001   Jim Doe</option>
  <!--there is an extra digit; the name is bumped over 1 char to the right-->
</select>Here is the display I want:
100   John Doe
200   Jane Doe
1001  Jim Doe
 
    