Is there any way to style optgroup using CSS on the iPad?
- by AzzyDude
Is there any way to style the HTML element 'optgroup' using CSS? It's specifically important the style appears on the mobile iOS browser for iPad.
The HTML is:
<optgroup label="Great Britain">
<option value="EUROPE_ENGLAND">England</option>
<option value="EUROPE_SCOTLAND">Scotland</option>
<option value="EUROPE_WALES">Wales</option>
</optgroup>
And the CSS is:
optgroup {
color: red;
}
I'm not even sure it's possible to style the iPad's optgroup by the way.