views:

33

answers:

3

I was wondering what is the default font is for <input type=submit> tags?

I am running Mac OS 10.6 with Firefox 3.6. But the font is the same for Safari 5 as well.

Pic of default styled input button is here: http://twitpic.com/2388tp

Thanks!

+1  A: 

Probably defined by the default system font. Geneva or Lucida Grande, most likely the former.

Best way to check would be to say

.submit
{
    font-family: "Geneva";
}    
Josh K
A: 

I found out it was Lucida Grande.

ChrisJF
+2  A: 

Lucida Grande. It's the default system font on Mac OS X.

mipadi