hello
here you go..
Main Topics
Browse All TopicsI have tried using <b> and <em> tags and I still can't get parts of my drop down list to go bold. Is this possible to do?
<option value="/abc/">Test Page</option>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
neeraj523, your example doesnt work.
Angela123 - see MSDN documentation about the option element. It does not have an option to set the font property like you need it:
http://msdn.microsoft.com/
So I think my response above gave you a direction where to start.
You change the font styling for the select box as a whole, but styling for individual options ignored. I suggest focusing on why you want certain options bolded and finding a another way to make that happen. For now I'm going to assume the point of bolding is to suggest one or more options as the better choice(s).
One solution could be to simply designate one option as "selected" when the page loads.
<option selected value="2">Two</option>
Another solution may involve differentiating objects in the select is by adding a unique like symbol (like * &/or **) to the end of the text for the option item. Then place a description for that symbol at the bottom of the page.
<option value="2">Two **</option>
Later...
**<i> Option Two is suggested for such & such reason</i>
Hope that helps
Business Accounts
Answer for Membership
by: amazingwolf1Posted on 2009-03-30 at 01:47:13ID: 24016967
Hi,
You can't do that in the basic SELECT element.
If you want that functionality, you must implement your own drop down, either in JS or in C#. If you do this with JS I recommend using JQuery which would save you some effort doing that.
Hope this helped!