Given this simple html,
<select id="ddl">
<option style="background:#0f0">a</option>
<option style="background:#f00;">b</option>
<option>c</option>
</select>
(http://jsfiddle.net/DxK47/) You can see that each option has it's own background colour.
Unfortunately, when whatever option is selected (causing the dropdownlist to 'close'), the background remains white (or whatever the page default is).
Is it possible to have the background of the selected item be displayed in the dropdownlist after the selection has been made (ideally without using javascript)