Reputation: 38940
For the dropdown menu, is there a way to modify the 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.
Upvotes: 0
Views: 224
Reputation: 15390
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;
}
Upvotes: 0
Reputation: 7761
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.
Upvotes: 0