I am facing an issue with a multiple select input in Internet Explorer 9. The options are not utilizing the full width of the select box, despite having a min-width set on the select element.
In Chrome and Firefox, the items fill up the available width perfectly. How can I ensure that the option elements also take up the complete width of the select input?
Take a look at the Saab
item specifically in Internet Explorer:
You can see the problem in action in this Fiddle
<select style="min-width: 150px; width: auto;" name="cars" multiple>
<option value="volvo" style="width: 100%;">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
The behavior is correct in Chrome: