How to display multiple spaces in HTML select list <option></option>
Use
(normally you shouldn't use this for spacing, but you don't have many more options in <select>
elements):
<select id="list">
<option>one space</option>
<option>two spaces</option>
<option>three spaces</option>
</select>
Updated Fiddle