Is it possible to customize the CSS style of individual items in a GWT ListBox drop-down menu? For example, changing the color of certain items. I am unable to achieve this by applying a style to the entire ListBox because I need a different style for each item! The desired result would look like this:
<select class="style1" id="test">
<option class="style2" value=""> </option>
<option class="style2" value="AL">Alabama</option>
<option class="style6" value="AK">Alaska</option>
<option class="style6 red" value="AZ">Arizona</option>
<option class="style6" value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>
</select>