views:

36

answers:

1

I want to make sure that all of my form fields uses the same font. I have:

 input
 {
   font-size:1em;
   font-family:Verdana;
 }

But this doesn't get applied to drop down lists, nor to multi-line text boxes.

+7  A: 

Add select (for dropdowns) and textarea (for multiline text boxes):

input, select, textarea {
  font-size: 1em;
  font-family: Verdana;
}
InsDel
This is surprisingly difficult to google. Thanks.
chris