MrBlue
Senior Member
- Dec 18, 2009
- 975
- 695
This is how you would change the css font-family for separate options in a html select element.
Fiddle:
Code:
<select>
<optgroup style="font-family:arial">
<option>Arial</option>
</optgroup>
<optgroup style="font-family:verdana">
<option>veranda</option>
</optgroup>
<optgroup style="font-family:other">
<option>other</option>
</optgroup>
</select>
Fiddle:
Code:
https://jsfiddle.net/c0ovw6tb/