Possible Duplicate:
how to style the option of a html “select”?
I have an HTML element and I want one of the options to be in italic. I don't remember where but I've seen select elements that have a combination of bold fonts and regular fonts; may be it was a custom-built control.
Here's the HTML:
<select>
<option>select a timezone</option>
<option value="0">Casablanca</option>
<option value="0">Dublin, Edinburgh, Lisbon, London</option>
<option value="60">Belgrade, Bratislava, Budapest, Ljubljana, Prague</option>
<option value="60" style="font-style:italic;">Brussels, Copenhagen, Madrid, Paris</option>
</select>
And here is the jsfiddle.
Thanks for your suggestions.