I'm trying to add small thumbnail images (20x20 pixels) to <option>
elements in a <select>
list but I'm unable to find a working solution.
I searched SO and Google and found the following example:
<select>
<option style="background-image:url(/_assets/_img/thumbnail1.png)">Item 1</option>
<option style="background-image:url(/_assets/_img/thumbnail2.png)">Item 2</option>
</select>
For some reason this doesn't load thumbnails. I made sure to test the paths and the thumbnails do exist (I did a <img src="/_assets/_img/thumbnail1.png">
before the list to check that images get loaded.
Any ideas how to accomplish this?