It seems an html tag can't be inserted in the option tag. Say
<option><em>somewords<\em><\option>
Is there other ways to style the "someword", without styling the option tag?
It seems an html tag can't be inserted in the option tag. Say
<option><em>somewords<\em><\option>
Is there other ways to style the "someword", without styling the option tag?
Styling the <option>
is the only way. You can't even use <span>
for styling.
Not at all possible to have html tags inside option
tag, Style option
tag itself
option{
font-weight:bold;
}