Submit Button Font - What is it? (browser default styles)
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 de开发者_JAVA百科fault styled input button is here: http://twitpic.com/2388tp
Thanks!
Lucida Grande. It's the default system font on Mac OS X.
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";
}
I found out it was Lucida Grande.
精彩评论