tags:

views:

40

answers:

2

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?

+1  A: 

Styling the <option> is the only way. You can't even use <span> for styling.

egrunin
+1  A: 

Not at all possible to have html tags inside option tag, Style option tag itself

option{
font-weight:bold;
}
Mithun P
I think he wants to do <option>this is **my** text</option>
egrunin
Yes. That's what I want.
bxx