I have an HTML select options with text I would like to group into columns that are aligned. I tried using inline-block:
<select>
  <option><span div="display:inline-block;width:3em;">A:</span><span style="display:inline-block;width:5em;">Lorem Ipsum</span>
  </option>
  <option><span div="display:inline-block;width:3em;">AA:</span><span style="display:inline-block;width:5em;">Fusce efficitur ante</span>
  </option>
</select>I want to get the output:
A   Lorem Ipum
AA  Fusce efficitur ante
Is there any Twitter Bootstrap for this?
 
     
    