Modifying appearance of dropdown menu
For the dropdown menu, is there a way to modify t开发者_运维技巧he look and feel? For example, I'd like to style the text to a specific font and get rid of the natural borders on the dropdown list.
You can do minimal customization with CSS
the greatest effects are going to be with jQuery
Here is a list of great list box plugins. This one looks like the one you would like and is my personal favorite.
As the dropdown is an intrinsic OS control (certainly in Windows) your options are limited.
You should be able to format the border of the control but not the border of the drop down area, however, you should be able to change the font, font style and color just fine.
Read the other answers for more control of your select box, but here is how to change the font properties, but not the drop down menu (the options)
select {
font-family:Tahoma;
font-size:10px;
}
精彩评论