I'm just trying to apply some basic styles to different options in a dropdown select element. In Firefox, the styles work, but in Chrome and IE9 the styles don't take effect, even though in Chrome I can see in the debug inspector that the styles are being read and not overridden by any other styles. Any ideas?
E.g this rule:
select option.depth-0 {
font-weight: bold;
}
On this element:
<option value="1" class="depth-0">Home</option>