I have a dropdown select
element in which few of the option
s need to be shown as bold and underline. I have defined some CSS below:
.OptioncBold{ font-weight:bold; text-decoration:underline;}
This is working fine in Firefox, but not in IE8. When I debug it in IE using the developer tools, it even shows the class being added on that particular option
along with both the properties. However, when I see the dropdown select
element, the option
is neither bold nor underlined. I've read many posts related to this, but could not find anything which helped.
Thanks for your time and help.
Anup