Mobile app version of vmapp.org
Login or Join
Pope3001725

: What is the default serif, sans-serif and monospace font-family for Mac OS X? Beginning with OS X 10.0 Cheetah, and assuming they are the same through the current release 10.8 Mountain Lion,

@Pope3001725

Posted in: #Fonts

Beginning with OS X 10.0 Cheetah, and assuming they are the same through the current release 10.8 Mountain Lion, what are the default fonts rendered for the following font-families?


font-family: serif;
font-family: sans-serif;
font-family: monospace;

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Pope3001725

1 Comments

Sorted by latest first Latest Oldest Best

 

@Nickens628

The default fonts for WebKit/Safari under Mac OS X are as follows:


Monospace -> Courier
Sans-serif -> Helvetica
Serif -> Times
Standard (default) -> Times


This is gleaned directly from the WebKit source, specifically the XML/plist file at Source/WebCore/Resources/DefaultFont.plist.in that's available online here. It includes the following lines:

<dict>
<key>monospace</key>
<string>Courier</string>
<key>standard</key>
<string>Times</string>
<key>sans-serif</key>
<string>Helvetica</string>
<key>serif</key>
<string>Times</string>
</dict>


The same file also includes the default monospace, sans-serif, and serif fonts for Korean, Japanese, Simplified Chinese, and Traditional Chinese, if those are of any interest to you.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme